-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bug_report.md -> bug_report.yaml
- Loading branch information
Showing
5 changed files
with
90 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: | ||
- bug | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Describe the bug" | ||
description: "A clear and concise description of what the bug is." | ||
placeholder: "Enter a detailed description of the bug" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Reproducible Code" | ||
description: "Provide code or steps needed to reproduce the bug." | ||
placeholder: "Enter code snippet or reproduction steps" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Environment" | ||
description: "Provide details such as OS, version, etc." | ||
placeholder: "OS: \nVersion: " | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Expected behavior" | ||
description: "A clear and concise description of what you expected to happen." | ||
placeholder: "Enter what you expected to happen" | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: "Screenshots" | ||
description: "Add screenshots to help explain your problem." | ||
placeholder: "Provide screenshot links or instructions to attach images" | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: "Additional context" | ||
description: "Add any other context about the problem here." | ||
placeholder: "Enter any additional context" | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# This file cannot use the extension `.yaml`. | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
labels: | ||
- enhancement | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Describe the feature" | ||
description: "A clear and concise description of what the feature is." | ||
placeholder: "Enter a detailed description of the feature" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Additional context" | ||
description: "Add any other context about the feature here." | ||
placeholder: "Enter any additional context" | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Close inactive issues | ||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: "This issue is stale because it has been open for 60 days with no activity." | ||
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." | ||
stale-issue-label: "stale" | ||
exempt-issue-labels: "bug" | ||
days-before-issue-stale: 60 | ||
days-before-issue-close: 14 | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 |