diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e64847a..1770c93 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -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