Skip to content

Commit

Permalink
Fix incorrect stale bot version
Browse files Browse the repository at this point in the history
- issues are not being closed with the correct reason because v3 doesn't support that API
  • Loading branch information
cee-chen committed Oct 24, 2023
1 parent 0f85892 commit 5f1e680
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8.0.0
- uses: actions/stale@v8
with:
stale-pr-message: 'πŸ‘‹ Hey there. This PR hasn''t had any activity for 90 days. We''ll automatically close it if that trend continues for another week. If you feel this issue is still valid and needs attention please let us know with a comment.'
close-pr-message: '❌ We''re automatically closing this PR due to lack of activity. Please comment if you feel this was done in error.'
Expand All @@ -29,7 +29,7 @@ jobs:
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v8
with:
stale-issue-message: 'πŸ‘‹ Hi there - this issue hasn''t had any activity in 6 months. If the EUI team has not explicitly expressed that this is something on our roadmap, it''s unlikely that we''ll pick this issue up. We would sincerely appreciate a PR/community contribution if this is something that matters to you! If not, and there is no further activity on this issue for another 6 months (i.e. it''s stale for over a year), the issue will be auto-closed.'
close-issue-message: '❌ Per our previous message, this issue is auto-closing after having been open and inactive for a year. If you strongly feel this is still a high-priority issue, or are interested in contributing, please leave a comment or open a new issue linking to this one for context.'
Expand All @@ -48,7 +48,7 @@ jobs:
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v8
with:
days-before-stale: -1 # the label should be manually applied
days-before-close: 3
Expand Down

0 comments on commit 5f1e680

Please sign in to comment.