Stale #1434
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: "0 0 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: "Marked as stale for no activity in the past 60 days. In 7 days it will be closed unless new activity." | |
stale-pr-message: "Marked as stale for no activity in the past 60 days. In 7 days it will be closed unless new activity." | |
exempt-issue-labels: "no-stale" | |
exempt-pr-labels: "no-stale" |