diff options
author | Signal Linden <signal@lindenlab.com> | 2024-03-04 17:32:35 -0800 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-03-08 18:27:56 +0200 |
commit | 52945758c479c403f86026f36276d7d805b87af3 (patch) | |
tree | 94f95c9fe4aa1b665c9f8014384102a0424a3418 | |
parent | dc915db3f8a7114d9b082300d32ed15fdce3f07d (diff) |
Do not automatically close issues (#929)
Mark issues as stale but do not close them.
-rw-r--r-- | .github/workflows/stale.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 35ac41420c..e44e223589 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -17,7 +17,8 @@ jobs: with: stale-pr-message: This pull request is stale because it has been open 30 days with no activity. Remove stale label or comment or it will be closed in 7 days days-before-stale: 30 - days-before-close: 7 + days-before-close: 7 + days-before-issue-close: -1 exempt-pr-labels: blocked,must,should,keep stale-pr-label: stale - name: Print outputs |