Skip to content

Commit

Permalink
fix equivalence tests
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcervante committed Nov 18, 2024
1 parent 449aa90 commit 4c2f0cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/equivalence-test-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
- name: target_branch
id: target_branch
run: |
merged = ${{ github.event.pull_request.merged }}
target_branch = ${{ github.event.pull_request.base.ref }}
merged=${{ github.event.pull_request.merged }}
target_branch=${{ github.event.pull_request.base.ref }}
targets_release_branch = false
targets_release_branch=false
if [ "$target_branch" == "main" ]; then
targets_release_branch = true
targets_release_branch=true
elif [ "$target_branch" =~ ^v[0-9]+\.[0-9]+$ ]; then
targets_release_branch = true
targets_release_branch=true
fi
should_run=false
Expand Down

0 comments on commit 4c2f0cc

Please sign in to comment.