From 592759059df6bb2d92425f3d3b1f7340bf1864ca Mon Sep 17 00:00:00 2001 From: Ben Knutson Date: Wed, 18 Feb 2026 12:18:46 +0000 Subject: [PATCH] Refactor Github Action per b/485167538 --- .github/workflows/link_checker.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/link_checker.yaml b/.github/workflows/link_checker.yaml index 308d482ca17..f691f50f80d 100644 --- a/.github/workflows/link_checker.yaml +++ b/.github/workflows/link_checker.yaml @@ -97,9 +97,10 @@ jobs: gh api \ --method DELETE \ -H "Accept: application/vnd.github+json" \ - /repos/${{ github.repository }}/issues/comments/${{ steps.find-comment.outputs.comment-id }} + /repos/${{ github.repository }}/issues/comments/${STEPS_FIND_COMMENT_OUTPUTS_COMMENT_ID} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + STEPS_FIND_COMMENT_OUTPUTS_COMMENT_ID: ${{ steps.find-comment.outputs.comment-id }} - name: Prepare Report if: env.HAS_CHANGES == 'true' && steps.lychee-check.outcome == 'failure'