diff options
author | slaren <slarengh@gmail.com> | 2024-05-01 07:13:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 08:13:59 +0300 |
commit | c4ec9c0d3d67e6b33638e6dad86419e6fd5ffe01 (patch) | |
tree | f7963df62ca6e6d99b1e0bc1fea7c9a8c026ae73 | |
parent | a8f9b076316e16aadd0791015b3bfd446fe1e904 (diff) |
ci : exempt confirmed bugs from being tagged as stale (#7014)
-rw-r--r-- | .github/workflows/close-issue.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/close-issue.yml b/.github/workflows/close-issue.yml index 7f21daec..69c9f4f6 100644 --- a/.github/workflows/close-issue.yml +++ b/.github/workflows/close-issue.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/stale@v5 with: - exempt-issue-labels: "refactor,help wanted,good first issue,research" + exempt-issue-labels: "refactor,help wanted,good first issue,research,bug" days-before-issue-stale: 30 days-before-issue-close: 14 stale-issue-label: "stale" |