Close stale issues #1380
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" | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 21 | |
days-before-close: 7 | |
# Milestones on an issue or a PR exempted from being marked as stale. | |
exempt-milestones: true | |
# Exempt all issues with milestones from being marked as stale. | |
exempt-all-issue-milestones: true | |
# Only check issues and PRs with these labels | |
any-of-labels: "x:status/claimed,claimed πΎ,dependencies,do not merge π§,duplicate,experimental π¬, | |
first-timers only π£,github_actions,good first issue,good first patch,hacktoberfest π, | |
hacktoberfest-accepted β,in-progress πΏ,invalid,python,security π¨, wip/content-checking β, | |
wip/proof-reading π,wip/story-writing β,wip/style-guideline-checking π,spam π«,status/draft, | |
status/wontfix π π½" | |
stale-issue-label: abandoned π | |
stale-issue-message: > | |
This issue has been automatically marked as `abandoned π` | |
because it has not had recent activity. It will be closed if no | |
further activity occurs. Thank you | |
for your contributions. | |
close-issue-message: > | |
Closing stale issue. If this issue is still relevant, | |
please reopen it. | |
stale-pr-label: 'abandoned π' | |
stale-pr-message: > | |
This pull request has been automatically marked as `abandoned π` | |
because it has not had recent activity. It will be closed if no | |
further activity occurs. Thank you for your contributions. | |
close-pr-message: > | |
Closing stale pull request. If you are still working on this, | |
please reopen this pull request. |