forked from honojs/hono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: automatically close issues marked as “not bug” over time (hono…
…js#3611) * ci: automatically close issues marked as “not bug” over time * Update no-response.yml * add comment
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 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,26 @@ | ||
name: Close stale issues with "not bug" label | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Close stale issues with "not bug" label | ||
uses: actions/stale@v8 | ||
with: | ||
days-before-stale: 7 | ||
days-before-close: 2 | ||
stale-issue-message: 'This issue has been marked as stale due to inactivity.' | ||
close-issue-message: 'Closing this issue due to inactivity.' | ||
exempt-issue-labels: '' | ||
stale-issue-label: 'stale' | ||
only-labels: 'not bug' | ||
operations-per-run: 30 | ||
remove-stale-when-updated: true |