From b5f4c8d85defd025c1bcedc919de15530455bf60 Mon Sep 17 00:00:00 2001 From: yuxiqian <34335406+yuxiqian@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:07:27 +0800 Subject: [PATCH] [hotfix] Fix Stale label automatically removed Signed-off-by: yuxiqian <34335406+yuxiqian@users.noreply.github.com> --- .github/workflows/close_stale.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/close_stale.yml b/.github/workflows/close_stale.yml index edc604635a..30fbdd4dff 100644 --- a/.github/workflows/close_stale.yml +++ b/.github/workflows/close_stale.yml @@ -50,7 +50,7 @@ jobs: This pull request has been closed because it has not had recent activity. You could reopen it if you try to continue your work, and anyone who are interested in it are encouraged to continue work on this pull request. - close-pr-label: stale - remove-pr-stale-when-updated: true - remove-issue-stale-when-updated: true - labels-to-add-when-unstale: 'waiting for review' \ No newline at end of file + # Auto-remove stale has conflicts with existing approve label workflows + # and will result in Stale label missing. + remove-pr-stale-when-updated: false + remove-issue-stale-when-updated: false \ No newline at end of file