aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDanielshe <daniel@shedaniel.me>2019-09-12 20:39:34 +0800
committerGitHub <noreply@github.com>2019-09-12 20:39:34 +0800
commitf10e2f722b85015569275fe6201a565c4d4455a2 (patch)
tree8e8c9d42845bcaf9929837cd68ef2314fcc5e453 /.github/workflows
parent7b18df7a6e56e2c075aec9a5c53ad4d1d1f2101e (diff)
downloadRoughlyEnoughItems-f10e2f722b85015569275fe6201a565c4d4455a2.tar.gz
RoughlyEnoughItems-f10e2f722b85015569275fe6201a565c4d4455a2.tar.bz2
RoughlyEnoughItems-f10e2f722b85015569275fe6201a565c4d4455a2.zip
Create stale.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/stale.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 000000000..688fb4deb
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,19 @@
+name: Mark 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: 'Stale issue message'
+ stale-pr-message: 'Stale pull request message'
+ stale-issue-label: 'no-issue-activity'
+ stale-pr-label: 'no-pr-activity'