This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch v4 in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git
The following commit(s) were added to refs/heads/v4 by this push: new 9fc9020 Bump actions/stale from 9.1.0 to 10.0.0 9fc9020 is described below commit 9fc90209a46f1f21ec8e1d9d6388eafb6b5a484f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Fri Sep 5 02:09:52 2025 +0000 Bump actions/stale from 9.1.0 to 10.0.0 Bumps [actions/stale](https://github.com/actions/stale) from 9.1.0 to 10.0.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/5bef64f19d7facfb25b37b414482c7164d639639...3a9db7e6a41a89f618792c92c0e97cc736e1b13f) --- updated-dependencies: - dependency-name: actions/stale dependency-version: 10.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <supp...@github.com> --- .github/workflows/stale.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e75500f..84c5f85 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9 + - uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10 with: days-before-stale: '60' days-before-close: '30' @@ -52,7 +52,7 @@ jobs: remove-labels: if: > - github.event_name == 'issue_comment' && github.event.action == 'created' && + github.event_name == 'issue_comment' && github.event.action == 'created' && (contains(github.event.issue.labels.*.name, 'waiting-for-feedback') || contains(github.event.issue.labels.*.name, 'Stale')) name: 'Remove waiting-for-feedback label' runs-on: ubuntu-latest @@ -63,14 +63,14 @@ jobs: if: contains(github.event.issue.labels.*.name, 'waiting-for-feedback') with: script: | - + const result = await github.rest.issues.removeLabel({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, name: 'waiting-for-feedback' }); - + console.log(result); - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 @@ -78,12 +78,12 @@ jobs: if: contains(github.event.issue.labels.*.name, 'Stale') with: script: | - + const result = await github.rest.issues.removeLabel({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, name: 'Stale' }); - + console.log(result);