From 11f31bc5ac06d533eb2c0f22322e2cbc9eb19bcd Mon Sep 17 00:00:00 2001 From: Jorge Palma Date: Sun, 19 Jul 2020 16:33:12 -0700 Subject: [PATCH] Create action-needed.yml --- .github/workflows/action-needed.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/action-needed.yml diff --git a/.github/workflows/action-needed.yml b/.github/workflows/action-needed.yml new file mode 100644 index 00000000..1e5bde11 --- /dev/null +++ b/.github/workflows/action-needed.yml @@ -0,0 +1,21 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "30 8 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-label: 'action-required' + stale-pr-label: 'action-required' + only-labels: 'triage' + days-before-stale: 2 + days-before-close: -1 +