Unverified Commit ecbac733 authored by Hong Minhee (洪 民憙)'s avatar Hong Minhee (洪 民憙) Committed by GitHub
Browse files

Merge pull request #307 from w8385/main

parents c1ebeed9 73314de1
Loading
Loading
Loading
Loading
+62 −0
Original line number Diff line number Diff line
name: Bug report
description: Report a bug or unexpected behavior
labels: [ "type/bug" ]
body:
  - type: markdown
    attributes:
      value: |
        Focuses on reporting unintended behavior in the system.

        - Requires: Reproducible steps, expected vs. actual behavior, environment details.
        - Goal: Help identify and fix logic or runtime errors.

  - type: textarea
    attributes:
      label: Summary
      description: Describe the issue you're reporting.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Expected Behavior
      description: What did you expect to happen?
    validations:
      required: true

  - type: textarea
    attributes:
      label: Actual Behavior
      description: What actually happened?
    validations:
      required: true

  - type: textarea
    attributes:
      label: Environment
      description: |
        Specify your runtime and operating system.
        - OS:
        - Runtime (Deno / Node.js / Bun / Cloudflare Workers):
        - Runtime version:
    validations:
      required: true

  - type: textarea
    attributes:
      label: Logs / Screenshots
      description: Paste logs or add screenshots to help us diagnose the issue.
    validations:
      required: false

  - type: textarea
    attributes:
      label: Steps to Reproduce
      description: Provide a step-by-step guide to reproduce the issue.
      placeholder: |
        1.
        2.
        3.
    validations:
      required: true
      
 No newline at end of file
+43 −0
Original line number Diff line number Diff line
name: Maintenance task
description: >-
  Routine maintenance, build configuration, tooling updates,
  and other non-functional improvements
labels: [ "type/chore" ]
body:
  - type: markdown
    attributes:
      value: |
        Non-functional tasks related to configuration, tooling, or infrastructure.
        
        - Includes: CI/CD changes, build system tweaks, formatting configs.
        - Goal: Improve the development workflow and internal operations.

  - type: textarea
    attributes:
      label: Summary
      description: Briefly describe the task or change you're proposing.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Affected Area
      description: What part of the system or tooling is involved?
    validations:
      required: true

  - type: textarea
    attributes:
      label: Reason / Context
      description: Why is this task necessary? Include any relevant background.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Checklist
      description: Steps to complete this task.
      placeholder: |
        1. 
        2. 
        3. 
+48 −0
Original line number Diff line number Diff line
name: Documentation
description: >-
  Report missing, outdated, or incorrect documentation that needs
  improvement
labels: [ "type/documentation" ]
body:
  - type: markdown
    attributes:
      value: |
        Focuses on correcting, updating, or creating documentation.
        
        - Includes: Affected files, what’s missing or incorrect, suggested content.
        - Goal: Improve clarity, completeness, and usefulness of docs.

  - type: textarea
    attributes:
      label: Summary
      description: Briefly describe the documentation issue.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Affected Docs
      description: Specify which documentation needs changes (file, section, etc.).
    validations:
      required: true

  - type: textarea
    attributes:
      label: What's Missing or Incorrect?
      description: Describe the issue with the current documentation.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Suggested Content or Structure
      description: Suggest how the content or structure should be updated.
    validations:
      required: false

  - type: textarea
    attributes:
      label: Related Code / Feature
      description: Reference any related code or features, if relevant.
    validations:
      required: false
+46 −0
Original line number Diff line number Diff line
name: Enhancement
description: Improvements to existing features
labels: [ "type/enhancement" ]
body:
  - type: markdown
    attributes:
      value: |
        An improvement to an existing feature.
        
        - Includes: Pain points in current behavior and better alternatives.
        - Goal: Improve usability, performance, or completeness.

  - type: textarea
    attributes:
      label: Summary
      description: Briefly describe the feature or enhancement you're suggesting.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Problem
      description: Why is this needed? What problem does it solve?
    validations:
      required: true

  - type: textarea
    attributes:
      label: Proposed Solution
      description: Describe your suggested solution or behavior.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Alternatives Considered
      description: Have you thought of other approaches or solutions?
    validations:
      required: false

  - type: textarea
    attributes:
      label: Scope / Dependencies
      description: What parts of the system would be affected or require changes?
    validations:
      required: false
+47 −0
Original line number Diff line number Diff line
name: Feature request
description: >-
  Propose new functionality or capabilities to be added to the Fedify project
labels: [ "type/feature" ]
body:
  - type: markdown
    attributes:
      value: |
        A request to add entirely new functionality.
        
        - Includes: Motivation, proposed solution, and use cases.
        - Goal: Expand capabilities of the system.

  - type: textarea
    attributes:
      label: Summary
      description: Briefly describe the feature or enhancement you're suggesting.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Problem
      description: Why is this needed? What problem does it solve?
    validations:
      required: true

  - type: textarea
    attributes:
      label: Proposed Solution
      description: Describe your suggested solution or behavior.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Alternatives Considered
      description: Have you thought of other approaches or solutions?
    validations:
      required: false

  - type: textarea
    attributes:
      label: Scope / Dependencies
      description: What parts of the system would be affected or require changes?
    validations:
      required: false
Loading