Skip to content

Commit

Permalink
Fix incorrect environment variables in PR step
Browse files Browse the repository at this point in the history
  • Loading branch information
Cawllec committed Jul 4, 2024
1 parent d387c79 commit a25a178
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
VERSION: ${{ github.event_name == 'repository_dispatch' && github.event.client_payload.target_version || inputs.target_version }}
BUNDLE_GITHUB__COM: ${{ secrets.BUNDLE_ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REVIEWER: kstenerud,robert-smartbear
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -55,7 +56,7 @@ jobs:
if: ${{ steps.current-branch.outputs.branch != 'next'}}
run: >
gh pr create -B next
-H bumpsnag-$TARGET_SUBMODULE-$TARGET_VERSION
--title "Update $TARGET_SUBMODULE to version $TARGET_VERSION"
-H bumpsnag-$SUBMODULE-$VERSION
--title "Update $SUBMODULE to version $VERSION"
--body 'Created by bumpsnag'
--reviewer kstenerud,robert-smartbear
--reviewer $REVIEWER

0 comments on commit a25a178

Please sign in to comment.