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
committerRich Trott <rtrott@gmail.com>2021-12-18 17:07:22 +0300
commit10df3af981620f9f5a785ce5bf688d3500fcf732 (patch)
tree9c194fac42a92d7696b1d9c293a8ad53799049f7 /.github
parent587b167cc441468d28a78d89882365872451bcfe (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')
-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 }}