Clean Stale Issue #648
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: Clean Stale Issue | |
on: | |
schedule: | |
# each day | |
- cron: "0 20 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
env: | |
STALE_ISSUE_LABEL: issue/stale | |
STALE_PR_LABEL: pr/stale | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close stale issues | |
uses: actions/[email protected] | |
with: | |
# ===== for issue | |
stale-issue-label: ${{ env.STALE_ISSUE_LABEL }} | |
# exclude all issues/PRs with milestones | |
exempt-all-issue-assignees: true | |
# exclude issues/PRs with the specified labels | |
exempt-issue-labels: pinned,security,good-first-issue | |
# reach idle days and marked as stale | |
days-before-issue-stale: 90 | |
stale-issue-message: | | |
This issue has been automatically marked as stale because it has not | |
had recent activity. It will be closed if no further activity occurs. | |
# after marked stale, how long will close it | |
days-before-issue-close: 14 | |
close-issue-message: | | |
This issue has not seen any activity since it was marked stale. | |
Closing. |