We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44185c commit 82f492bCopy full SHA for 82f492b
.github/workflows/auto-start-ci.yml
@@ -55,6 +55,6 @@ jobs:
55
ncu-config set repo "$(echo ${{ github.repository }} | cut -d/ -f2)"
56
57
- name: Start the CI
58
- 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 }}
59
env:
60
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/commit-queue.yml
@@ -75,6 +75,6 @@ jobs:
75
ncu-config set owner "${OWNER}"
76
77
- name: Start the Commit Queue
78
- 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 }}
79
80
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
0 commit comments