-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
275 additions
and
42 deletions.
There are no files selected for viewing
File renamed without changes.
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
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,24 @@ | ||
## Documentation could be found here | ||
## https://github.com/actions/stale | ||
## | ||
name: 'Stale and close issues' | ||
on: | ||
schedule: | ||
# Each day at 1:30am run the action | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v4 | ||
with: | ||
exempt-issue-labels: 'status: analysing,status: inNextRelease,status: inProgress,status: wontfix' | ||
|
||
days-before-issue-stale: 30 | ||
stale-issue-message: 'This issue has been automatically marked for closing, because it has not had activity in 30 days. It will be closed if no further activity occurs in 10 days.' | ||
stale-issue-label: 'status: markedForAutoClose' | ||
|
||
days-before-issue-close: 10 | ||
close-issue-message: 'This issue was closed, because it has been already marked for 10 days with no activity.' | ||
close-issue-label: 'status: closedByBot' |
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
Oops, something went wrong.