Skip to content

Commit

Permalink
fix(ci): boolean conditionals (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Mar 18, 2024
1 parent 501bb49 commit be5a3e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/.pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
echo "github.event.pull_request.base.ref=${{ github.event.pull_request.base.ref }}"
echo "inputs.merge_branch=${{ inputs.merge_branch }}"
echo "retag check:"
echo " github.event.pull_request.merged == 'true' && github.event.pull_request.base.ref == 'inputs.merge_branch'"
echo " => ${{ github.event.pull_request.merged == 'true' }} && ${{ github.event.pull_request.base.ref == inputs.merge_branch }}"
echo " => ${{ github.event.pull_request.merged == 'true' && github.event.pull_request.base.ref == inputs.merge_branch }}"
echo " github.event.pull_request.merged == true && github.event.pull_request.base.ref == inputs.merge_branch"
echo " => ${{ github.event.pull_request.merged == true }} && ${{ github.event.pull_request.base.ref == inputs.merge_branch }}"
echo " => ${{ github.event.pull_request.merged == true && github.event.pull_request.base.ref == inputs.merge_branch }}"
retags:
name: Retags
if: ${{ github.event.pull_request.merged == 'true' && github.event.pull_request.base.ref == inputs.merge_branch }}
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.base.ref == inputs.merge_branch }}
needs: vars
runs-on: ubuntu-22.04
permissions:
Expand Down

0 comments on commit be5a3e4

Please sign in to comment.