From 61e25c7b555e31a65cb511b1c31a60be2d91a64b Mon Sep 17 00:00:00 2001 From: Agnes Garoux Date: Wed, 4 Sep 2024 09:53:52 +0100 Subject: [PATCH] set up new stale PR workflow --- .github/workflows/stale.yml | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index fd00550ff..8fb9ad69b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,7 +1,6 @@ # Automatically mark any pull requests that have been inactive for 30 days as "Stale" # then close them 3 days later if there is still no activity. -# -# Shamelessly copied from https://github.com/guardian/.github/blob/main/workflow-templates/stale.yml +# name: "Stale PR Handler" on: @@ -15,24 +14,4 @@ permissions: jobs: stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v9 - id: stale - # Read about options here: https://github.com/actions/stale#all-options - with: - # never automatically mark issues as stale - days-before-issue-stale: -1 - - # Wait 30 days before marking a PR as stale - days-before-stale: 30 - stale-pr-message: > - This PR is stale because it has been open 30 days with no activity. - Unless a comment is added or the “stale” label removed, this will be closed in 3 days - - # Wait 3 days after a PR has been marked as stale before closing - days-before-close: 3 - close-pr-message: This PR was closed because it has been stalled for 3 days with no activity. - - # Ignore PR's raised by Dependabot - exempt-pr-labels: "dependencies" + uses: wellcomecollection/.github/.github/workflows/stale.yml@main