Skip to content

Commit

Permalink
chore(github): add stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jul 17, 2024
1 parent 80b2a60 commit 4b397c0
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: stale

on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest

permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v9
with:
exempt-issue-labels: triage,v3
stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity.'
days-before-stale: 30
days-before-close: -1

0 comments on commit 4b397c0

Please sign in to comment.