From 26531949ef41bd1eb806c52be298233ce83757b3 Mon Sep 17 00:00:00 2001 From: Daniel Bernal Date: Mon, 15 Apr 2024 17:29:33 +0200 Subject: [PATCH] Limit stale marks/actions to be PRs only (#2627) Limit PR stale marking actions to be PRs only. (Avoid marking issues) --- .github/workflows/stale_pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale_pr.yml b/.github/workflows/stale_pr.yml index a5590c9c63..a4a6e92c29 100644 --- a/.github/workflows/stale_pr.yml +++ b/.github/workflows/stale_pr.yml @@ -12,8 +12,8 @@ jobs: uses: actions/stale@v9 with: stale-pr-message: 'This PR has been inactive for more than 7 days and will be automatically closed 7 days from now.' - days-before-stale: 7 + days-before-pr-stale: 7 close-pr-message: 'This PR has been closed after 14 days of inactivity. Feel free to reopen it if you plan to continue working on it or have further discussions.' - days-before-close: 7 + days-before-pr-close: 7 stale-pr-label: stale exempt-draft-pr: true \ No newline at end of file