From c0dc82ced77e2d5b0e7a29945ecda11b28ab4d11 Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Wed, 13 Nov 2019 14:29:22 +0100 Subject: [PATCH 1/2] 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 From 65f3661d34dc07524475a18f2c47228e678d1a7c Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Tue, 19 Nov 2019 11:11:06 +0100 Subject: [PATCH 2/2] Update .github/workflows/stale.yml Co-Authored-By: chriseth --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 6904a16e5..048e2dcb4 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,6 +12,6 @@ jobs: - 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-message: "A reminder that this pull request has had no activity for 14 days" stale-pr-label: "no-pr-activity" days-before-stale: 14