This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
Close stale issues and PRs CI #1168
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 stale issues and PRs CI | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
# https://github.com/marketplace/actions/close-stale-issues | |
jobs: | |
stale: | |
name: Close stale issues and PRs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 60 | |
days-before-close: 7 | |
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove no-issue-activity label or comment or this will be closed in 7 days' | |
close-issue-message: 'This issue is closed due to inactivity.' | |
stale-issue-label: 'no-issue-activity' | |
stale-pr-message: 'This pull request is stale because it has been open 60 days with no activity. Remove no-pr-activity label or comment or this will be closed in 7 days' | |
close-pr-message: 'This pull request is closed due to inactivity.' | |
stale-pr-label: 'no-pr-activity' | |