We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9932161 commit 4deff4fCopy full SHA for 4deff4f
.github/actions/equivalence-test/action.yml
@@ -73,5 +73,5 @@ runs:
73
--base ${{ inputs.current-branch }} \
74
--head ${{ inputs.new-branch }} \
75
--title "Update equivalence test golden files" \
76
- --body "{{ inputs.message }}" \
+ --body '${{ inputs.message }}' \
77
--reviewer ${{ inputs.reviewers }}
.github/workflows/equivalence-test-update.yml
@@ -21,8 +21,8 @@ jobs:
21
- name: target_branch
22
id: target_branch
23
run: |
24
- merged="${{ github.event.pull_request.merged }}"
25
- target_branch="${{ github.event.pull_request.base.ref }}"
+ merged='${{ github.event.pull_request.merged }}'
+ target_branch='${{ github.event.pull_request.base.ref }}'
26
27
targets_release_branch=false
28
if [ "$target_branch" == "main" ]; then
0 commit comments