From 9ebc1762be9db24e734c3eb23aa72a40976d5f18 Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Wed, 10 Jan 2024 13:41:15 -0500 Subject: [PATCH] Create stale.yml --- .github/workflows/stale.yml | 16 ++++++++++++++++ 1 file changed, 16 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 00000000..146b499b --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,16 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: 'This ticket is stale because it has been open 5 days with no activity. If pertaining to an Enhancement, the ticket will be tracked even after closing.' + stale-pr-message: 'This PR is stale because it has been open 5 days with no activity. It will be closed soon if no further activity occurs. Thank you!' + close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' + days-before-stale: 5 + days-before-close: 5