Skip to content

Commit

Permalink
reduce size
Browse files Browse the repository at this point in the history
  • Loading branch information
tjololo committed Jan 10, 2025
1 parent f955730 commit 5afc2c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/terraform/plan/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ runs:
echo "Reading tfplan.log"
plan=$(cat ${{ inputs.working_directory }}/tfplan.log)
echo "Plan result length: ${#plan}"
plan=$(echo "${plan//\`}" | grep -v 'Refreshing state' | tail --bytes 150000)
plan=$(echo "${plan//\`}" | grep -v 'Refreshing state' | tail --bytes 110000)
echo "PLAN<<${{ env.DELIMITER }}2" >> $GITHUB_ENV
echo '[Lines containing Refreshing state removed]' >> $GITHUB_ENV
echo '[Maybe further truncated see logs for complete plan output]' >> $GITHUB_ENV
Expand Down

0 comments on commit 5afc2c3

Please sign in to comment.