Skip to content

Commit ccfb235

Browse files
committed
ci: twister: Fix "SDK Build Job ID" terminology
The Twister workflow input "SDK Build Job ID" is misleading because it actually refers to the workflow run ID (i.e. numeric ID referring to a specific run) instead of the job ID, which is a string identifying a unique job in a workflow. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent ac46a70 commit ccfb235

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/twister.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Twister
33
on:
44
workflow_dispatch:
55
inputs:
6-
sdk-build-job-id:
7-
description: 'SDK Build Job ID'
6+
sdk-build-run-id:
7+
description: 'SDK Build Run ID'
88
required: true
99
sdk-bundle-basename:
1010
description: 'SDK Bundle Base Name'
@@ -268,12 +268,12 @@ jobs:
268268
# with:
269269
# name: ${{ env.BUNDLE_NAME }}
270270
# path: artifacts
271-
# run-id: ${{ github.event.inputs.sdk-build-job-id }}
271+
# run-id: ${{ github.event.inputs.sdk-build-run-id }}
272272
# github-token: ${{ secrets.GITHUB_TOKEN }}
273273
run: |
274274
gh run download \
275275
-R ${GITHUB_REPOSITORY} \
276-
${{ github.event.inputs.sdk-build-job-id }} \
276+
${{ github.event.inputs.sdk-build-run-id }} \
277277
-n ${BUNDLE_NAME} \
278278
-D artifacts
279279
env:

0 commit comments

Comments
 (0)