Skip to content

Commit

Permalink
fix(learning): 🐛 put if at the correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienqb committed Sep 18, 2022
1 parent aed0c90 commit a99251e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/on-release-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
name: release-please
jobs:
say-hi-when-release:
if: ${{ github.event.pull_request.merged }} && endsWith(${{ github.head_ref}}, "release-please-action")
runs-on: ubuntu-latest
steps:
- name: Say hello
if: ${{ github.event.pull_request.merged }} && endsWith(${{ github.head_ref}}, "release-please-action")
run: echo "git head ref is ${{ github.head_ref}} and git base ref is {{ github.base_ref }}"

0 comments on commit a99251e

Please sign in to comment.