Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Rodríguez Baquero <github@diegorbaquero.com>2022-03-30 02:51:03 +0300
committerGitHub <noreply@github.com>2022-03-30 02:51:03 +0300
commit10dfa405a0154a14d86bcb818da37a2f04e523f2 (patch)
treef4649534d396f17cb493643a4f2825b7547b93f5
parent10e853453422bc5d60daec526b977e46e1abe258 (diff)
chore: add locking of threads [skip ci]
-rw-r--r--.github/workflows/lock.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml
new file mode 100644
index 0000000..093d259
--- /dev/null
+++ b/.github/workflows/lock.yml
@@ -0,0 +1,19 @@
+name: 'Lock Threads'
+
+on:
+ schedule:
+ - cron: '0 * * * *'
+ workflow_dispatch:
+
+permissions:
+ issues: write
+ pull-requests: write
+
+concurrency:
+ group: lock
+
+jobs:
+ action:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: dessant/lock-threads@v3