Skip to content

Commit

Permalink
Complete equivalence test implementation (#36029)
Browse files Browse the repository at this point in the history
* Complete equivalence test implementation

* use proper github actions bot
  • Loading branch information
liamcervante authored Nov 18, 2024
1 parent 9932161 commit cacdd5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/actions/equivalence-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ runs:
if: steps.execute.outputs.changed == 'true'
shell: bash
run: |
git config --global user.email "[email protected]"
git config --global user.name "Team Terraform"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git checkout -b ${{ inputs.new-branch }}
git add testing/equivalence-tests/outputs
git commit -m "Update equivalence test golden files."
Expand All @@ -73,5 +73,5 @@ runs:
--base ${{ inputs.current-branch }} \
--head ${{ inputs.new-branch }} \
--title "Update equivalence test golden files" \
--body "{{ inputs.message }}" \
--body '${{ inputs.message }}' \
--reviewer ${{ inputs.reviewers }}
4 changes: 2 additions & 2 deletions .github/workflows/equivalence-test-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ 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
if [ "$target_branch" == "main" ]; then
Expand Down

0 comments on commit cacdd5b

Please sign in to comment.