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 5fbd174
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/equivalence-test-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- synchronize
- ready_for_review
- reopened
- synchronize

permissions:
contents: read
Expand Down
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 5fbd174

Please sign in to comment.