Close inactive issues #830
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: Close inactive issues | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
ascending: true | |
operations-per-run: 100 | |
exempt-issue-labels: accepted,on-deck | |
days-before-issue-stale: 30 | |
days-before-issue-close: 30 | |
stale-issue-label: "stale" | |
stale-issue-message: | |
"This issue is stale because it has been open for 30 days with no activity. If you believe this is still an issue on the latest DataHub release please leave a comment with the version that you tested it with. If this is a question/discussion please head to https://slack.datahubproject.io.\ | |
\ For feature requests please use https://feature-requests.datahubproject.io" | |
close-issue-message: "This issue was closed because it has been inactive for 30 days since being marked as stale." | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |