ISSUES-TAG-STALE #45
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: ISSUES-TAG-STALE | |
on: | |
schedule: | |
- cron: "0 0 * * 1" #Runs at 00:00 UTC on Mon | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has been marked as stale because it has been open for 30 days with no activity' | |
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment' | |
days-before-issue-stale: 30 | |
days-before-pr-stale: 45 | |
days-before-issue-close: -1 | |
days-before-pr-close: -1 | |
remove-stale-when-updated: true |