From a3cc5df317ffeec2b6bf78d37e075f33aeb0f79c Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Thu, 16 Dec 2021 11:19:11 -0800 Subject: [PATCH] Configure stale action (#4269) * Configure stale action * [skip ci] Update .github/workflows/stale.yml * Update .github/workflows/stale.yml --- .github/workflows/stale.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..1c1c47a1 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,24 @@ +name: Mark stale issues + +on: + schedule: + - cron: '30 * * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + + steps: + - uses: actions/stale@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + debug-only: true + days-before-stale: 30 + days-before-close: 5 + stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.' + stale-issue-label: 'Submitter Attention Required' + exempt-issue-labels: 'pinned, Fixed in next release, Bug: Confirmed' + exempt-all-issue-assignees: true