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.
This commit is contained in:
Richard van der Hoff 2025-07-11 14:03:55 +01:00 committed by GitHub
parent e528f95b2e
commit 1090c52410
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,12 +15,14 @@ jobs:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9 - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
with: with:
operations-per-run: 100 operations-per-run: 100
# Flaky test issue closing # 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-stale: 14
days-before-issue-close: 0 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." 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" exempt-issue-labels: "Z-Flaky-Test-Disabled"
# Stale PR closing # Stale PR closing
days-before-pr-stale: 180 days-before-pr-stale: 180
days-before-pr-close: 0 days-before-pr-close: 0