關閉穩定 Issues / PR #586
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: "關閉穩定 Issues / PR" | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: "這個 Issue 已經被標記爲 '穩定' , 如果五天之内沒有任何留言或其他活動則會關閉 Issue" | |
stale-pr-message: "這個 Issue 已經被標記爲 '穩定' , 如果五天之内沒有任何留言或其他活動則會關閉 Issue" | |
close-issue-message: "這個 Issue / PR 已經被關閉,因爲在標記爲 '穩定' 之後五天沒有任何活動" | |
days-before-stale: 30 | |
days-before-close: 5 | |
days-before-pr-close: 30 |