Skip to content

Commit

Permalink
Merge pull request #5 from sitkevij/ci/ga-stale
Browse files Browse the repository at this point in the history
ci: add ga stale
  • Loading branch information
sitkevij authored Dec 7, 2023
2 parents 5533419 + d125ebf commit 455dff6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: stale
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:

permissions:
issues: write
pull-requests: write
discussions: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: "This issue has been marked stale due to no recent activity."
stale-pr-message: "This issue has been marked stale due to no recent activity."
close-issue-message: "This issue was closed due to no activity for an extended period."
close-pr-message: "This PR was closed due to no activity for an extended period."
days-before-issue-stale: 30
days-before-pr-stale: 45
days-before-issue-close: 5
days-before-pr-close: 10
- uses: dessant/lock-threads@v5
with:
exclude-any-issue-labels: "help wanted, upstream"
process-only: "issues"

0 comments on commit 455dff6

Please sign in to comment.