From c0dc82ced77e2d5b0e7a29945ecda11b28ab4d11 Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Wed, 13 Nov 2019 14:29:22 +0100 Subject: [PATCH] Update stale.yml Update config Update .github/workflows/stale.yml Co-Authored-By: Daniel Kirchner --- .github/workflows/stale.yml | 17 +++++++++++++++++ 1 file changed, 17 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..6904a16e5 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,17 @@ +name: Mark stale 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-pr-message: "A reminder that this pull request has had no activity for 30 days" + stale-pr-label: "no-pr-activity" + days-before-stale: 14