From e12401e2ac038d99364777e46cad7f464e01b4dd Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 20 Jun 2024 03:51:08 -0700 Subject: [PATCH] Update stale.yml Problem: The stale workflow is closing issues with an epic label. These are issues that are supposed to be open for a long time so we don't want to mark them as stale after 14 days Solution: Add 'epic' to the list of exempt labels --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1f916cf944..237f637136 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -23,7 +23,7 @@ jobs: stale-issue-label: "stale" stale-pr-label: "stale" exempt-all-issue-milestones: true - exempt-issue-labels: "backlog, backlog candidate" + exempt-issue-labels: "backlog, backlog candidate, epic" operations-per-run: 100 days-before-stale: 14 days-before-close: 14