Skip to content

Commit 872ccc4

Browse files
committed
ci: Fix incorrect reference to step outputs in cucumber update script
1 parent 8133bd6 commit 872ccc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
- uses: actions/checkout@v4
7272
with:
73-
ref: ${{ steps.check-existing-pr.checkout_branch }}
73+
ref: ${{ steps.check-existing-pr.outputs.checkout_branch }}
7474

7575
- run: bin/update_cucumber
7676
id: cucumber
@@ -92,7 +92,7 @@ jobs:
9292
if: steps.cucumber.outputs.cucumber_updated == 'yes'
9393
env:
9494
GH_TOKEN: ${{ steps.app-token.outputs.token }}
95-
BRANCH_NAME: ${{ steps.check-existing-pr.commit_branch }}
95+
BRANCH_NAME: ${{ steps.check-existing-pr.outputs.commit_branch }}
9696
COMMIT_MSG: ${{ steps.cucumber.outputs.commit_msg }}
9797
PR_EXISTS: ${{ steps.check-existing-pr.outputs.exists }}
9898
PR_TITLE: Update to cucumber/gherkin ${{ steps.cucumber.outputs.cucumber_version }}

0 commit comments

Comments
 (0)