Skip to content

Commit

Permalink
Merge pull request #529 from cryspen/franziskus/stale-job
Browse files Browse the repository at this point in the history
Create stale.yml
  • Loading branch information
franziskuskiefer authored Aug 23, 2024
2 parents 6a879b9 + 36c6b05 commit 4873df7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Triage stale issues and PRs'
on:
schedule:
- cron: '00 1 * * *'
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: "This issue has been marked as stale due to a lack of activity for 60 days. If you believe this issue is still relevant, please provide an update or comment to keep it open. Otherwise, it will be closed in 7 days."
stale-pr-message: "This PR has been marked as stale due to a lack of activity for 60 days. If you believe this pull request is still relevant, please provide an update or comment to keep it open. Otherwise, it will be closed in 7 days."
stale-issue-label: 'stale'
exempt-issue-labels: 'keep-open'
stale-pr-label: 'stale'
exempt-pr-labels: 'keep-open'
days-before-stale: 60
days-before-close: 7
close-issue-message: "This issue has been closed due to a lack of activity since being marked as stale. If you believe this issue is still relevant, please reopen it with an update or comment."
close-pr-message: "This PR has been closed due to a lack of activity since being marked as stale. If you believe this pull request is still relevant, please reopen it with an update or comment."

0 comments on commit 4873df7

Please sign in to comment.