2023-09-25 22:33:31 +08:00
|
|
|
name: Close inactive issues
|
2024-03-13 20:43:06 +08:00
|
|
|
|
2023-09-25 22:33:31 +08:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "30 1 * * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
close-issues:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
2024-03-13 20:43:06 +08:00
|
|
|
- uses: actions/stale@v9
|
2023-09-25 22:33:31 +08:00
|
|
|
with:
|
2023-12-10 22:30:30 +08:00
|
|
|
days-before-issue-stale: 90
|
|
|
|
days-before-issue-close: 7
|
2023-09-25 22:33:31 +08:00
|
|
|
stale-issue-label: "stale"
|
2023-12-10 22:30:30 +08:00
|
|
|
stale-issue-message: "This issue is stale because it has been open for 90 days with no activity."
|
2023-09-25 22:33:31 +08:00
|
|
|
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
|
|
|
|
days-before-pr-stale: -1
|
|
|
|
days-before-pr-close: -1
|
2024-09-05 20:00:36 +08:00
|
|
|
exempt-issue-labels: "no-stale-bot"
|
2023-09-25 22:33:31 +08:00
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|