Skip to content

Commit cb13230

Browse files
deps: update actions/stale action to v8 (#210)
* deps: update actions/stale action to v8 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
1 parent aeee575 commit cb13230

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/bot_stale.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
name: "Close stale issues"
2+
23
on:
34
schedule:
45
- cron: "30 12 * * *"
6+
7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
511
jobs:
612
stale:
713
runs-on: ubuntu-latest
814
steps:
9-
- uses: actions/stale@v1
15+
- uses: actions/stale@v8
1016
with:
11-
repo-token: ${{ secrets.GITHUB_TOKEN }}
1217
stale-issue-message: "This issue has been marked as stale because it has not had recent activity. The bot will close the issue if no further action occurs."
13-
exempt-issue-label: "pinned"
14-
stale-issue-label: "stale"
18+
exempt-issue-labels: "pinned"
19+
stale-issue-labels: "stale"
1520
stale-pr-message: "This PR has been marked as stale because it has not had recent activity. The bot will close the PR if no further action occurs."
16-
exempt-pr-label: "pinned"
17-
stale-pr-label: "stale"
21+
exempt-pr-labels: "pinned"
22+
stale-pr-labels: "stale"
1823
days-before-stale: 90
1924
days-before-close: 30

0 commit comments

Comments
 (0)