Skip to content

Commit

Permalink
增加自动关闭
Browse files Browse the repository at this point in the history
  • Loading branch information
derekhe authored Oct 20, 2024
1 parent 84a92c2 commit cc927ca
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Close Stale Issues

on:
schedule:
- cron: "0 0 0 * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Close stale issues
uses: actions/stale@v1
with:
days: 30
stale-issue-label: "stale"
close-issue-label: "closed"
stale-issue-message: "This issue has been inactive for 30 days. If you still need help, please provide more details or check if it's already been resolved."
close-issue-message: "This issue has been closed due to inactivity. If you still need help, please open a new issue."

0 comments on commit cc927ca

Please sign in to comment.