Close stale issues #1481
This file contains hidden or 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: | |
# 毎日AM1時実行 | |
- cron: "00 16 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
# https://github.com/actions/stale (official) | |
- uses: actions/stale@v6 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'このissueは1年間更新がないため1か月後にcloseします。closeしたくない場合は【自動close除外】ラベルを付けるか【close予定】ラベルを外してください。' | |
days-before-stale: 365 | |
days-before-close: 30 | |
exempt-issue-labels: "自動close除外" | |
stale-issue-label: "close予定" |