Stale #13
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: Stale | |
on: | |
schedule: | |
- cron: '00 10 * * *' | |
workflow_dispatch: | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- name: stale issues | |
uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 60 | |
days-before-close: 7 | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
stale-issue-label: 'stale' | |
stale-issue-message: > | |
There hasn't been any activity on this issue recently. | |
This issue has now been marked as stale and will be closed if no | |
further activity occurs. |