Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2021-12-18 14:14:33 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2022-02-01 07:47:59 +0300
commit433274ac2cb168b8d90187aa86dedf35d8bacc4d (patch)
treeeb3d06ce34b3dac9208069f3f4efbf3cafff4263 /.github/workflows
parent95568dc877e9a009cb83ed079ca0596e616aae04 (diff)
tools: fix CQ and auto-start-ci jobs
PR-URL: https://github.com/nodejs/node/pull/41230 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/auto-start-ci.yml2
-rw-r--r--.github/workflows/commit-queue.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml
index 4d2cb12497c..6c392c5a5a6 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 4ee050a2786..509be21815b 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 }}