fix: remove deploy pr comment post hook
Deploy Cluster / Terraform (push) Failing after 33s
Deploy Cluster / Ansible (push) Has been skipped

This commit is contained in:
2026-04-30 07:49:15 +00:00
parent d126de4dc4
commit 3a975a323c
-16
View File
@@ -80,22 +80,6 @@ jobs:
-no-color
continue-on-error: true
- name: Post Plan to PR
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
with:
script: |
const output = `#### Terraform Plan
\`\`\`
${{ steps.plan.outputs.stdout }}
\`\`\``;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
});
- name: Fail if plan failed
if: steps.plan.outcome == 'failure'
run: exit 1