Skip to content

Commit 82f492b

Browse files
aduh95targos
authored andcommitted
tools: fix CQ and auto-start-ci jobs
PR-URL: #41230 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent c44185c commit 82f492b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/auto-start-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ jobs:
5555
ncu-config set repo "$(echo ${{ github.repository }} | cut -d/ -f2)"
5656
5757
- name: Start the CI
58-
run: ./tools/actions/start-ci.sh "${{ needs.get_prs_for_ci.outputs.numbers }}"
58+
run: ./tools/actions/start-ci.sh ${{ needs.get_prs_for_ci.outputs.numbers }}
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/commit-queue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ jobs:
7575
ncu-config set owner "${OWNER}"
7676
7777
- name: Start the Commit Queue
78-
run: ./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} "${{ needs.get_mergeable_prs.outputs.numbers }}"
78+
run: ./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} ${{ needs.get_mergeable_prs.outputs.numbers }}
7979
env:
8080
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}

0 commit comments

Comments
 (0)