From a2e070f59e6266634d4c3a93ea76c922d20af188 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:24:09 +0000 Subject: [PATCH 1/2] Bump thollander/actions-comment-pull-request from 2.5.0 to 3.0.0 Bumps [thollander/actions-comment-pull-request](https://github.com/thollander/actions-comment-pull-request) from 2.5.0 to 3.0.0. - [Release notes](https://github.com/thollander/actions-comment-pull-request/releases) - [Commits](https://github.com/thollander/actions-comment-pull-request/compare/fabd468d3a1a0b97feee5f6b9e499eab0dd903f6...e2c37e53a7d2227b61585343765f73a9ca57eda9) --- updated-dependencies: - dependency-name: thollander/actions-comment-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/new-pr-comments.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/new-pr-comments.yml b/.github/workflows/new-pr-comments.yml index 0e51df805d..9377fef2a3 100644 --- a/.github/workflows/new-pr-comments.yml +++ b/.github/workflows/new-pr-comments.yml @@ -23,14 +23,14 @@ jobs: - name: Comment on new Fork PR if: github.event.pull_request.user.id != 49699333 - uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 + uses: thollander/actions-comment-pull-request@e2c37e53a7d2227b61585343765f73a9ca57eda9 with: message: Thank you for contributing to ${{ github.event.pull_request.base.repo.name }}! The workflow '${{ github.workflow }}' requires repository secrets and will not run without approval. Maintainers can add the `CI Cleared` label to allow it to run. Note that any changes to ci-security.yml and ci-pipeline.yml will not be reflected. GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }} - name: Comment on dependabot PR if: github.event.pull_request.user.id == 49699333 - uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 + uses: thollander/actions-comment-pull-request@e2c37e53a7d2227b61585343765f73a9ca57eda9 with: message: Set the milestone to the next ${{ (github.head_ref == 'master' && 'patch') || 'minor' }} version, check for supply chain attacks, and then add the `CI Cleared` label to allow CI to run. GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }} From 9224c465057c9a5696f4b63ad7a78e4060cd3b97 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 11 Oct 2024 11:41:08 -0400 Subject: [PATCH 2/2] Fix comment pull request token parameter names --- .github/workflows/new-pr-comments.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/new-pr-comments.yml b/.github/workflows/new-pr-comments.yml index 9377fef2a3..769b1eb492 100644 --- a/.github/workflows/new-pr-comments.yml +++ b/.github/workflows/new-pr-comments.yml @@ -26,11 +26,11 @@ jobs: uses: thollander/actions-comment-pull-request@e2c37e53a7d2227b61585343765f73a9ca57eda9 with: message: Thank you for contributing to ${{ github.event.pull_request.base.repo.name }}! The workflow '${{ github.workflow }}' requires repository secrets and will not run without approval. Maintainers can add the `CI Cleared` label to allow it to run. Note that any changes to ci-security.yml and ci-pipeline.yml will not be reflected. - GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }} + github-token: ${{ steps.app-token-generation.outputs.token }} - name: Comment on dependabot PR if: github.event.pull_request.user.id == 49699333 uses: thollander/actions-comment-pull-request@e2c37e53a7d2227b61585343765f73a9ca57eda9 with: message: Set the milestone to the next ${{ (github.head_ref == 'master' && 'patch') || 'minor' }} version, check for supply chain attacks, and then add the `CI Cleared` label to allow CI to run. - GITHUB_TOKEN: ${{ steps.app-token-generation.outputs.token }} + github-token: ${{ steps.app-token-generation.outputs.token }}