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

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictoria Drake <24644237+victoriadrake@users.noreply.github.com>2020-03-01 00:48:06 +0300
committerGitHub <noreply@github.com>2020-03-01 00:48:06 +0300
commit4dd0966b7c7d18ce7246dd661d19fe7a62afcb3c (patch)
tree5e131d1a0ce73e563a6f0191ce1a1d09b3521c60 /.github
parentf29204c62acfba3277d4b923558c819d0d8c72f4 (diff)
Create stale.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stale.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000..52d6785
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,21 @@
+name: Mark and close stale issues and pull requests
+
+on:
+ schedule:
+ - cron: "0 0 * * *"
+
+jobs:
+ stale:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/stale@v1
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: 'It looks like this has been idle a while, so I am marking it as stale. Remove the label or comment if this issue should remain open.'
+ stale-pr-message: 'It looks like this PR has been idle a while, so I am marking it as stale. Remove the label or comment if this is still being worked on.'
+ stale-issue-label: 'no-activity'
+ stale-pr-label: 'no-activity'
+ days-before-stale: 30
+ days-before-close: 5