From 77ef807c54b8bc63d127e573cfee3ab17f12dda8 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 23 Nov 2024 15:55:38 +0900 Subject: [PATCH] Update .github/workflows/close-stale-issues.yml: set ignore-pr-updates to true Without this option, stale counters for each PR keep restarting whenever any update occurs or a comment is added to them. Since the counters for PR are set to 365 days, ignore-pr-updates should help us to get rid of zombie PRs (which are kept open by bumps). Signed-off-by: Suguru Hirahara --- .github/workflows/close-stale-issues.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/close-stale-issues.yml b/.github/workflows/close-stale-issues.yml index 8e5c045df..88db2d986 100644 --- a/.github/workflows/close-stale-issues.yml +++ b/.github/workflows/close-stale-issues.yml @@ -46,4 +46,4 @@ jobs: # An allow-list of label(s) to only process the PRs which contain one of these label(s). any-of-pr-labels: 'needs-rebase' # Use this to ignore updates such as comments (only to keep the PR alive by bumping) - # ignore-pr-updates: true + ignore-pr-updates: true