From 4bdf772130121a41b8e3b0a61ddb152b554a1b04 Mon Sep 17 00:00:00 2001 From: Nacho Date: Mon, 23 Sep 2019 10:20:02 -0400 Subject: [PATCH] Added stale pr/issue workflow for test --- .github/workflows/stale.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..106f7127d --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,21 @@ +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: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you are still interested in this issue and it is still relevant you can comment or remove the label to revive it.' + stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you are still interested in this issue and it is still relevant you can comment or remove the label to revive it.' + stale-issue-label: 'Status: Wontfix' + stale-pr-label: 'Status: Wontfix' + days-before-stale: 1 + days-before-close: 1