From 82f492bbb034a3be551ec015a479009609117811 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 18 Dec 2021 12:14:33 +0100 Subject: [PATCH] tools: fix CQ and auto-start-ci jobs PR-URL: https://github.com/nodejs/node/pull/41230 Reviewed-By: Darshan Sen Reviewed-By: Rich Trott --- .github/workflows/auto-start-ci.yml | 2 +- .github/workflows/commit-queue.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 4d2cb12497cfd6..6c392c5a5a6f5b 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -55,6 +55,6 @@ jobs: ncu-config set repo "$(echo ${{ github.repository }} | cut -d/ -f2)" - name: Start the CI - run: ./tools/actions/start-ci.sh "${{ needs.get_prs_for_ci.outputs.numbers }}" + run: ./tools/actions/start-ci.sh ${{ needs.get_prs_for_ci.outputs.numbers }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index 4ee050a2786db8..509be21815bb06 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -75,6 +75,6 @@ jobs: ncu-config set owner "${OWNER}" - name: Start the Commit Queue - run: ./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} "${{ needs.get_mergeable_prs.outputs.numbers }}" + run: ./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} ${{ needs.get_mergeable_prs.outputs.numbers }} env: GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}