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>2021-07-03 02:19:17 +0300
committerGitHub <noreply@github.com>2021-07-03 02:19:17 +0300
commit575941e3fb809effcc271a444e58ca3474bae336 (patch)
treeb77df7d43c5d8e96865af09bc81d60f5aeecee59 /.github
parent26268f85ceb9174fb6d04d93035261f86ee308ac (diff)
chore: add stale
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stale.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000..105d3eb
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,23 @@
+name: Mark stale issues and pull requests
+
+on:
+ schedule:
+ - cron: '0 12 * * *'
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+
+ steps:
+ - uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: 'Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?'
+ stale-pr-message: 'Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?'
+ exempt-issue-labels: accepted, blocked,bug,dependency,enhancement,'help wanted',question,security,meta
+ exempt-pr-labels: accepted, blocked,bug,dependency,enhancement,'help wanted',question,security,meta
+ stale-issue-label: 'stale'
+ stale-pr-label: 'stale'