diff options
author | Yarden Shoham <git@yardenshoham.com> | 2024-03-20 02:38:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 00:38:16 +0000 |
commit | 6ed2c29b1459daa6e7b0cf63b9c08fd9c001ac09 (patch) | |
tree | 28228fd4ce0b42b348fe0752666c9d42143b171b /.github/workflows | |
parent | adc61c5d71651acc316bbc3a7fee6f2c0c60b06e (diff) | |
download | gitea-6ed2c29b1459daa6e7b0cf63b9c08fd9c001ac09.tar.gz gitea-6ed2c29b1459daa6e7b0cf63b9c08fd9c001ac09.zip |
Don't lock using GitHub actions (#29913)
We have our bot for this. See:
- https://github.com/GiteaBot/gitea-backporter?tab=readme-ov-file#locks
- https://github.com/GiteaBot/gitea-backporter/blob/main/src/lock.ts
Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cron-lock.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/cron-lock.yml b/.github/workflows/cron-lock.yml deleted file mode 100644 index 665313135b..0000000000 --- a/.github/workflows/cron-lock.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: cron-lock - -on: - schedule: - - cron: "0 0 * * *" # every day at 00:00 UTC - workflow_dispatch: - -permissions: - issues: write - pull-requests: write - -concurrency: - group: lock - -jobs: - action: - runs-on: ubuntu-latest - if: github.repository == 'go-gitea/gitea' - steps: - - uses: dessant/lock-threads@v5 - with: - issue-inactive-days: 10 - pr-inactive-days: 7 |