From 1a3a212c3c4e07169cf0357fd0c09fa79518ccc8 Mon Sep 17 00:00:00 2001 From: nitrocode <7775707+nitrocode@users.noreply.github.com> Date: Thu, 4 May 2023 07:29:51 -0500 Subject: [PATCH] fix: add exempt labels to stale action (#3374) Co-authored-by: PePe Amengual --- .github/workflows/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index cdfabb540..979b3428e 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -4,13 +4,15 @@ on: - cron: '30 1 * * *' jobs: stale: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/stale@v8 with: stale-pr-message: 'This issue is stale because it has been open for 1 month with no activity. Remove stale label or comment or this will be closed in 1 month.' stale-issue-message: This issue is stale because it has been open for 1 month with no activity. Remove stale label or comment or this will be closed in 1 month.' remove-stale-when-updated: true + exempt-pr-labels: "never-stale" + exempt-issue-labels: "never-stale" # 1 month days-before-stale: 31 # 1 month