-
Notifications
You must be signed in to change notification settings - Fork 61
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
1 parent
4ef9767
commit cf0e8b2
Showing
1 changed file
with
28 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,28 @@ | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/stale@v1 | ||
with: | ||
repo-token: ${{ secrets.RELEASE_USER_TOKEN }} | ||
days-before-stale: 14 | ||
|
||
stale-issue-message: > | ||
There has not been any activity to this issue in the last 30 days. | ||
It will automatically be closed after 7 more days. Remove the `stale` label to prevent this. | ||
stale-issue-label: 'stale' | ||
exempt-issue-label: 'confirmed,help wanted' | ||
|
||
stale-pr-message: > | ||
There has not been any activity to this pull request in the last 30 days. | ||
It will automatically be closed after 7 more days. Remove the `stale` label to prevent this. | ||
stale-pr-label: 'stale' | ||
exempt-pr-labels: 'awaiting-approval,work-in-progress' |