From 171b7746f84563752c094430184dee173a3e5481 Mon Sep 17 00:00:00 2001 From: Joe Bourne Date: Tue, 18 Feb 2020 11:05:30 -0500 Subject: [PATCH] Adding a stale-issue workflow --- .github/workflows/stale.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..5201ee78e --- /dev/null +++ b/.github/workflows/stale.yml @@ -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