Mark stale issues #1952
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
name: Mark stale issues | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: > | |
Marking this issue as stale since there has been no activity in the last 30 days. | |
This issue will be closed in 15 days if stale label is not removed or if there are no new comments. | |
stale-pr-message: > | |
Marking this pull request as stale since there has been no activity in the last 30 days. | |
This pull request will be closed in 15 days if stale label is not removed or if there are no new comments. | |
stale-issue-label: 'stale' | |
days-before-stale: 30 | |
days-before-close: 15 |