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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2020-08-14 21:32:47 +0300
committerGitHub <noreply@github.com>2020-08-14 21:32:47 +0300
commit4b45b6417359a7033c3e9c805b8e87449f91288d (patch)
treee9b67a274c4ba6eb8bb15df15a3bd3c0059d247a /.github
parent33c728361c7b1ff96937e5a995e3290f8484d0e2 (diff)
Create stale.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stale.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 00000000..97fb5cd4
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,20 @@
+name: Mark stale issues
+
+on:
+ schedule:
+ - cron: "40 20 * * *"
+
+jobs:
+ stale:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: 'This issue is marked as stale, because it had no activity in the last 30 days. It will be closed in 5 days.'
+ stale-issue-label: 'stale'
+ exempt-issue-labels: 'enhancement,bug,investigate'
+ days-before-stale: 30
+ days-before-close: 5