Skip to content

Commit

Permalink
Merge pull request #214 from cerberauth/add-stale-workflow
Browse files Browse the repository at this point in the history
Add stale github workflow
  • Loading branch information
emmanuelgautier authored Oct 30, 2024
2 parents 5c3795c + 8449472 commit 919ea57
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Close Stale Issues"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest

permissions:
contents: write
issues: write
pull-requests: write

steps:
- uses: actions/stale@v9
with:
stale-issue-message: |
Hello contributors!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe this issue is still relevant, please comment with your thoughts or re-open it.
Thank you for your contributions! 🙏
stale-issue-label: "stale"
days-before-stale: 60
days-before-close: 30
exempt-milestones: true
exempt-assignees: true
only-pr-labels: "stale"

0 comments on commit 919ea57

Please sign in to comment.