Skip to content

Commit

Permalink
Fix stalebot config (#8076)
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen authored Oct 14, 2024
1 parent 33bf1b7 commit 870194c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ permissions:
jobs:
stale-prs: # close stale PRs after ~3 months
permissions:
issues: write
pull-requests: write
issues: none # this will generate GH actions permissions errors. This is fine; we'd rather the action error than try to parse issues it doesn't need to
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
Expand All @@ -28,7 +28,7 @@ jobs:
stale-issues: # close stale issues after ~1 year
permissions:
issues: write
pull-requests: write
pull-requests: none # this will generate GH actions permissions errors. This is fine; we'd rather the action error than try to parse PRs it doesn't need to
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
Expand All @@ -48,6 +48,7 @@ jobs:
answered-issues: # close answered issues after 3 days if no response
permissions:
issues: write
pull-requests: none # this will generate GH actions permissions errors. This is fine; we'd rather the action error than try to parse PRs it doesn't need to
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
Expand Down

0 comments on commit 870194c

Please sign in to comment.