Skip to content

Commit

Permalink
Different method of using outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Cawllec committed Oct 6, 2023
1 parent 5acc7e0 commit 0df150a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:

- name: List current branch name
id: current-branch
run: git rev-parse --abbrev-ref HEAD >> $GITHUB_OUTPUT
run: echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_OUTPUT

- name: Create pull request
if: ${{ steps.current-branch.outputs != 'dep-updater'}}
if: ${{ steps.current-branch.outputs.branch != 'dep-updater'}}
run: gh pr create -B dep-updater |
-H bumpsnag-$TARGET_SUBMODULE-$TARGET_VERSION |
--title 'Update $TARGET_SUBMODULE to version $TARGET_VERSION' |
Expand Down

0 comments on commit 0df150a

Please sign in to comment.