diff options
| author | Danielshe <daniel@shedaniel.me> | 2019-09-12 20:39:34 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-12 20:39:34 +0800 |
| commit | f10e2f722b85015569275fe6201a565c4d4455a2 (patch) | |
| tree | 8e8c9d42845bcaf9929837cd68ef2314fcc5e453 /.github | |
| parent | 7b18df7a6e56e2c075aec9a5c53ad4d1d1f2101e (diff) | |
| download | RoughlyEnoughItems-f10e2f722b85015569275fe6201a565c4d4455a2.tar.gz RoughlyEnoughItems-f10e2f722b85015569275fe6201a565c4d4455a2.tar.bz2 RoughlyEnoughItems-f10e2f722b85015569275fe6201a565c4d4455a2.zip | |
Create stale.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/stale.yml | 19 |
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' |
