From: Julien Déramond Date: Sun, 24 May 2026 08:28:38 +0000 (+0200) Subject: Replace actions-cool/issues-helper by actions/stale (#42433) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=4c0bd41c85e67aaea7bb6096acf449f08a3c3330;p=thirdparty%2Fbootstrap.git Replace actions-cool/issues-helper by actions/stale (#42433) --- diff --git a/.github/workflows/issue-close-require.yml b/.github/workflows/issue-close-require.yml index d57e92f906..ab251031e3 100644 --- a/.github/workflows/issue-close-require.yml +++ b/.github/workflows/issue-close-require.yml @@ -10,17 +10,20 @@ permissions: jobs: issue-close-require: permissions: - # allow actions-cool/issues-helper to update issues and PRs issues: write pull-requests: write runs-on: ubuntu-latest if: github.repository == 'twbs/bootstrap' steps: - name: awaiting reply - uses: actions-cool/issues-helper@200c78641dbf33838311e5a1e0c31bbdb92d7cf0 # v3.8.0 + uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0 with: - actions: "close-issues" - labels: "awaiting-reply" - inactive-day: 14 - body: | + only-issue-labels: 'awaiting-reply' + days-before-stale: 1 # TODO: change to 14 + days-before-close: 0 + days-before-pr-stale: -1 + days-before-pr-close: -1 + stale-issue-message: '' + close-issue-message: | As the issue was labeled with `awaiting-reply`, but there has been no response in 14 days, this issue will be closed. If you have any questions, you can comment/reply. + close-issue-reason: not_planned