🧹 Close Inactive #103
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" | |
on: | |
schedule: | |
- cron: "0 0 * * 1" | |
workflow_dispatch: | |
jobs: | |
close-inactive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: close-issues | |
uses: actions/stale@v7 | |
with: | |
stale-issue-message: "This issue was closed due to inactive more than 30 days. You can reopen it if you think it should continue." | |
exempt-issue-labels: "FAQ,question,bug,enhancement" | |
days-before-stale: 30 | |
days-before-close: 0 | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 |