-
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #493 from mikeller/add_stale_action
Changed stale request handling to use a GitHub action.
- Loading branch information
Showing
2 changed files
with
31 additions
and
55 deletions.
There are no files selected for viewing
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,31 @@ | ||
name: 'Close stale issues' | ||
|
||
on: | ||
schedule: | ||
- cron: "30 4 * * *" | ||
|
||
jobs: | ||
stale: | ||
name: 'Check and close stale issues' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
operations-per-run: 30 | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it | ||
has not had recent activity. It will be closed if no further activity occurs | ||
within a week. | ||
close-issue-message: 'Issue closed automatically as inactive.' | ||
exempt-issue-labels: 'BUG,Feature Request,Pinned,Has Milestone' | ||
stale-issue-label: 'Inactive' | ||
stale-pr-message: > | ||
This pull request has been automatically marked as stale because it | ||
has not had recent activity. It will be closed if no further activity occurs | ||
within a week. | ||
close-pr-message: 'Pull request closed automatically as inactive.' | ||
exempt-pr-labels: 'Pinned,Has Milestone' | ||
stale-pr-label: 'Inactive' |