From 491f6d85e4cc9e3b0f712c8759a547210bcb7c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Wed, 20 Mar 2024 15:38:55 +0100 Subject: [PATCH] chore: fix stale issue closing GH Action (#63523) --- .github/workflows/issue_stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue_stale.yml b/.github/workflows/issue_stale.yml index 41f81ade0d..162832b8af 100644 --- a/.github/workflows/issue_stale.yml +++ b/.github/workflows/issue_stale.yml @@ -15,7 +15,7 @@ jobs: name: 'Close stale issues with no reproduction' with: repo-token: ${{ secrets.STALE_TOKEN }} - only-labels: 'please add a complete reproduction,please simplify reproduction' + any-of-labels: 'please add a complete reproduction,please simplify reproduction' close-issue-message: 'This issue has been automatically closed because it received no activity for a month and had no reproduction to investigate. If you think it was closed by accident, please leave a comment. If you are running into a similar issue, please open a new issue with a reproduction. Thank you.' days-before-issue-close: 1 days-before-issue-stale: 30 @@ -28,7 +28,7 @@ jobs: name: 'Close issues not verified on canary' with: repo-token: ${{ secrets.STALE_TOKEN }} - only-labels: 'please verify canary' + any-of-labels: 'please verify canary' close-issue-message: "This issue has been automatically closed because it wasn't verified against next@canary. If you think it was closed by accident, please leave a comment. If you are running into a similar issue, please open a new issue with a reproduction. Thank you." days-before-issue-close: 1 days-before-issue-stale: 30