From 914e29210ae746ed78c240b3f037611e0e8bd149 Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Wed, 26 Jun 2024 18:53:01 +0100 Subject: [PATCH] Initial rough stab at re-implementing stalebot --- .github/workflows/stale.yml | 13 +++++++++++++ 1 file changed, 13 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 0000000000..f03790d906 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,13 @@ +name: 'Close stale issues' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: 'Message to comment on stale issues. If none provided, will not mark issues stale' +# stale-pr-message: 'Message to comment on stale PRs. If none provided, will not mark PRs stale' \ No newline at end of file