Skip to content

Commit

Permalink
Update Stale Issue action (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev authored Nov 15, 2024
1 parent 3d372bc commit 2df4b5d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ on:
schedule:
- cron: '0 7 * * *'

permissions:
actions: write
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4.0.0
- uses: actions/stale@v9
id: stale
with:
stale-issue-message: 'This Issue will be closed in 30 days. Please remove the "Stale" label or comment to avoid closure with no action.'
Expand All @@ -21,7 +26,6 @@ jobs:
close-issue-label: 'closed'
close-pr-label: 'closed'
exempt-issue-labels: 'bug,enhancement,documentation,waiting,keep'
exempt-pr-labels: 'waiting,keep'
exempt-all-milestones: true
exempt-all-assignees: true
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}

0 comments on commit 2df4b5d

Please sign in to comment.