From 0b23b441a6bd24708543361af4edc8afc76d7543 Mon Sep 17 00:00:00 2001 From: Luke Nelson Date: Tue, 14 Jul 2026 16:41:24 +0100 Subject: [PATCH 1/2] ci: fix invalid workflow syntax --- .github/workflows/triage-comment.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/triage-comment.yml b/.github/workflows/triage-comment.yml index 32f2874..e51cf84 100644 --- a/.github/workflows/triage-comment.yml +++ b/.github/workflows/triage-comment.yml @@ -46,9 +46,9 @@ jobs: echo "## Skipped" >> $GITHUB_STEP_SUMMARY echo "Comment from collaborator/member/owner - no automated analysis performed." >> $GITHUB_STEP_SUMMARY - - if: steps.check-auth.outputs.is_collaborator != 'true' - parallel: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - parallel: + - if: steps.check-auth.outputs.is_collaborator != 'true' + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: repository: nuxt/.github ref: ${{ inputs.scripts-ref }} @@ -56,7 +56,8 @@ jobs: path: .shared persist-credentials: false - - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 + - if: steps.check-auth.outputs.is_collaborator != 'true' + uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: node-version: lts/* From a94b18e8a97c49697115df9d4adb41646e2cfbe6 Mon Sep 17 00:00:00 2001 From: Luke Nelson Date: Tue, 14 Jul 2026 16:46:29 +0100 Subject: [PATCH 2/2] keep diff easy to read --- .github/workflows/triage-comment.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/triage-comment.yml b/.github/workflows/triage-comment.yml index e51cf84..00bdbc3 100644 --- a/.github/workflows/triage-comment.yml +++ b/.github/workflows/triage-comment.yml @@ -47,8 +47,8 @@ jobs: echo "Comment from collaborator/member/owner - no automated analysis performed." >> $GITHUB_STEP_SUMMARY - parallel: - - if: steps.check-auth.outputs.is_collaborator != 'true' - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + if: steps.check-auth.outputs.is_collaborator != 'true' with: repository: nuxt/.github ref: ${{ inputs.scripts-ref }} @@ -56,8 +56,8 @@ jobs: path: .shared persist-credentials: false - - if: steps.check-auth.outputs.is_collaborator != 'true' - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 + - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 + if: steps.check-auth.outputs.is_collaborator != 'true' with: node-version: lts/*