From 5f1e680c190242fc2637c03d028256c6e6d5e417 Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Mon, 23 Oct 2023 17:51:20 -0700 Subject: [PATCH] Fix incorrect stale bot version - issues are not being closed with the correct reason because v3 doesn't support that API --- .github/workflows/stale_issues.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale_issues.yml b/.github/workflows/stale_issues.yml index cb73ae882ca..12befc0e1d4 100644 --- a/.github/workflows/stale_issues.yml +++ b/.github/workflows/stale_issues.yml @@ -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.' @@ -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.' @@ -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