From 82400535535e3801d6b72a13abdb0b5e3de5a3d8 Mon Sep 17 00:00:00 2001 From: Yavor Georgiev Date: Thu, 14 Mar 2024 20:42:59 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20Synced=20file(s)=20with=20realm/?= =?UTF-8?q?ci-actions=20(#1689)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: realm-ci --- .github/workflows/lock-threads.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/lock-threads.yml diff --git a/.github/workflows/lock-threads.yml b/.github/workflows/lock-threads.yml new file mode 100644 index 0000000000..dc1d483a8e --- /dev/null +++ b/.github/workflows/lock-threads.yml @@ -0,0 +1,24 @@ +name: 'Lock Threads' + +on: + schedule: + - cron: '0 * * * *' + workflow_dispatch: + +permissions: + issues: write + pull-requests: write + discussions: write + +concurrency: + group: lock-threads + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/lock-threads@v5 + with: + issue-inactive-days: 30 + pr-inactive-days: 30 + log-output: true