Skip to content

Commit

Permalink
fix: skip condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Yehonal authored Jul 20, 2023
1 parent 6729bff commit ee013b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
git add -A
git commit -m "chore: bump package version to $PACKAGE_VERSION and update changelog"
- name: Push
if: ${{ !inputs.skip_push }}
if: ${{ inputs.skip_push != "true" }}
shell: bash
run: |
git push --force https://${{ inputs.access_token || github.token }}@github.com/${{ github.event.pull_request.head.repo.full_name }}
Expand Down

0 comments on commit ee013b3

Please sign in to comment.