From 3e38ae59d21ae39f8d040d4e6b785e7ed1b1e54c Mon Sep 17 00:00:00 2001 From: Hetu Nandu Date: Wed, 21 Aug 2024 14:16:07 +0530 Subject: [PATCH] chore: Do not mark User testing PRs as stale (#35806) ## Description Adds a new exception on the stale check workflow. If the PR has the flag of "User Testing", it will not mark it as stale. > [!WARNING] > Tests have not run on the HEAD f27d4ceaf7b36227481c8a11a882c5d5c9fe07ea yet >
Wed, 21 Aug 2024 08:34:31 UTC ## Summary by CodeRabbit - **New Features** - Added the `User Testing` label to the list of exempt labels, preventing pull requests in user testing from being closed due to inactivity. This enhances workflow management for extended reviews or testing periods. --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 0ca30d865c..fb759fd9a7 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -24,6 +24,6 @@ jobs: close-issue-message: 'This issue has been closed because of inactivity.' close-pr-message: 'This PR has been closed because of inactivity.' only-issue-labels: 'Critical' - exempt-pr-labels: 'Dont merge,WIP' + exempt-pr-labels: 'Dont merge,WIP,User Testing'