diff options
author | 6543 <6543@obermui.de> | 2024-02-27 12:51:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 11:51:51 +0000 |
commit | 0900c1552b51c5d1d883bd3662e67891a5dac80d (patch) | |
tree | de2e57c6b580849efa06361d4ac58601c5652cc2 | |
parent | 6bdfc84e6c579861e034962acf9727bd39774f0f (diff) | |
download | gitea-0900c1552b51c5d1d883bd3662e67891a5dac80d.tar.gz gitea-0900c1552b51c5d1d883bd3662e67891a5dac80d.zip |
Lock issues and pulls faster (#29436)
also point to the docs to explain why we do so
followup to #29433
-rw-r--r-- | .github/workflows/cron-lock.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/cron-lock.yml b/.github/workflows/cron-lock.yml index 746ec49bc6..d4172687d5 100644 --- a/.github/workflows/cron-lock.yml +++ b/.github/workflows/cron-lock.yml @@ -19,4 +19,9 @@ jobs: steps: - uses: dessant/lock-threads@v5 with: - issue-inactive-days: 45 + issue-inactive-days: 10 + issue-comment: | + Automatically locked because of our [CONTRIBUTING guidelines](https://github.com/go-gitea/gitea/blob/main/CONTRIBUTING.md#issue-locking) + pr-inactive-days: 7 + pr-comment: | + Automatically locked because of our [CONTRIBUTING guidelines](https://github.com/go-gitea/gitea/blob/main/CONTRIBUTING.md#issue-locking) |