From 1090c52410ca5ffe6e7df9a0cf71b572c94ca620 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Fri, 11 Jul 2025 14:03:55 +0100 Subject: [PATCH] Flaky test issue auto-closer: only close playwright test issues (#30302) Only the playwright tests are automatically updated, and are therefore safe to auto-close. --- .github/workflows/triage-stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/triage-stale.yml b/.github/workflows/triage-stale.yml index f76cd299cc..51120c336e 100644 --- a/.github/workflows/triage-stale.yml +++ b/.github/workflows/triage-stale.yml @@ -15,12 +15,14 @@ jobs: - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9 with: operations-per-run: 100 + # Flaky test issue closing - only-issue-labels: "Z-Flaky-Test" + any-of-issue-labels: "Z-Flaky-Test-Chrome,Z-Flaky-Test-Firefox,Z-Flaky-Test-Webkit" days-before-issue-stale: 14 days-before-issue-close: 0 close-issue-message: "This flaky test issue has not been updated in 14 days. It is being closed as presumed resolved." exempt-issue-labels: "Z-Flaky-Test-Disabled" + # Stale PR closing days-before-pr-stale: 180 days-before-pr-close: 0