Adding a stale-issue workflow

This commit is contained in:
Joe Bourne
2020-02-18 11:05:30 -05:00
committed by GitHub
parent 0d8b515460
commit 171b7746f8

19
.github/workflows/stale.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 3 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not had any activity in 30 days, if you still require assistance please remove the `no-issue-activity` label'
stale-issue-label: 'no-issue-activity'
days-before-stale: 30
days-before-close: 14