Skip to content

Commit

Permalink
Merge branch 'main' into IOPAE-1246-allow-itn-bo-subs-mig
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-calabrese authored Aug 6, 2024
2 parents 7df2541 + 92f8e8c commit 87013f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call_code_review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Terraform Plan
working-directory: ${{ inputs.dir }}
run: |
terraform plan -lock-timeout=3000s -no-color | tee plan_output.txt
terraform plan -lock-timeout=3000s -no-color | grep -v "hidden-link:" | tee plan_output.txt
OUTPUT=$(grep -Ev "Refreshing state|state lock|Reading|Read" plan_output.txt | tail -c 60000)
echo "$OUTPUT" > plan_output_multiline.txt
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/call_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ jobs:
terraform plan \
-lock-timeout=3000s \
-out=tfplan-${{ github.sha }} \
-input=false
-input=false \
| grep -v "hidden-link:"
- name: "Upload Terraform Plan as Artifact"
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
Expand Down Expand Up @@ -148,4 +149,5 @@ jobs:
-lock-timeout=3000s \
-auto-approve \
-input=false \
tfplan-${{ github.sha }}
tfplan-${{ github.sha }} \
| grep -v "hidden-link:"

0 comments on commit 87013f6

Please sign in to comment.