Skip to content

Commit

Permalink
chore: remove --quiet flag
Browse files Browse the repository at this point in the history
  • Loading branch information
lpm0073 committed Nov 17, 2023
1 parent 1ad073d commit bae6644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/merge-branch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
- name: Verify source-branch
shell: bash
run: |
if ! git show-ref --verify --quiet refs/heads/${{ env.SOURCE_BRANCH }}; then
if ! git show-ref --verify refs/heads/${{ env.SOURCE_BRANCH }}; then
echo "source-branch '${{ env.SOURCE_BRANCH }}' does not exist in git repository" >&2
exit 1
fi
Expand All @@ -48,7 +48,7 @@ runs:
- name: Verify target-branch
shell: bash
run: |
if ! git show-ref --verify --quiet refs/heads/${{ env.TARGET_BRANCH }}; then
if ! git show-ref --verify refs/heads/${{ env.TARGET_BRANCH }}; then
echo "target-branch '${{ env.TARGET_BRANCH }}' does not exist in git repository" >&2
exit 1
fi
Expand Down

0 comments on commit bae6644

Please sign in to comment.