From 3e1e8e38a44777cae69844fe1fdea18830f94657 Mon Sep 17 00:00:00 2001 From: Disservin Date: Fri, 3 Jul 2026 20:25:35 +0200 Subject: [PATCH] Fix Clang-Format Action Inputs The inputs have a different name.. https://github.com/thollander/actions-comment-pull-request#action-inputs closes https://github.com/official-stockfish/Stockfish/pull/6940 No functional change --- .github/workflows/clang-format.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 19f3235d1..80bbb148d 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -43,11 +43,12 @@ jobs: message: | clang-format 20 needs to be run on this PR. If you do not have clang-format installed, the maintainer will run it when merging. - For the exact version please see https://packages.ubuntu.com/plucky/clang-format-20. + For the exact version please see https://packages.ubuntu.com/questing/clang-format-20. + An easier way to install it might be through https://apt.llvm.org/#llvmsh. _(execution **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**)_ - comment_tag: execution - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + comment-tag: execution + github-token: ${{ secrets.GITHUB_TOKEN }} - name: Comment on PR if: steps.clang-format.outcome != 'failure' @@ -55,7 +56,7 @@ jobs: with: message: | _(execution **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**)_ - create_if_not_exists: false - comment_tag: execution + create-if-not-exists: false + comment-tag: execution mode: delete - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }}