From 36ff86b8935533cba008790664c0df11e3b4ccd7 Mon Sep 17 00:00:00 2001 From: Cem <138484913+cemtuver-applovin@users.noreply.github.com> Date: Wed, 4 Dec 2024 10:29:27 +0100 Subject: [PATCH] Do not stale issues with enhancement tag (#49) ## Description by Korbit AI ### What change is being made? Modify the GitHub Actions workflow to prevent issues with the "enhancement" label from being marked as stale. ### Why are these changes being made? Enhancement issues often require more discussion and time before resolution, and marking them as stale prematurely could hinder ongoing collaboration and idea development. This change ensures such issues remain open for necessary discussions and contributions. > Is this description stale? Ask me to generate a new description by commenting `/korbit-generate-pr-description` --- .github/workflows/issue_stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue_stale.yml b/.github/workflows/issue_stale.yml index 8af1f3d..0f440f0 100644 --- a/.github/workflows/issue_stale.yml +++ b/.github/workflows/issue_stale.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/stale@v9 with: operations-per-run: 250 - exempt-issue-labels: "in progress" + exempt-issue-labels: "in progress,enhancement" days-before-pr-stale: -1 days-before-pr-close: -1 days-before-issue-stale: 30