diff --git a/.github/workflows/add-comment-on-pr-creation.yml b/.github/workflows/add-comment-on-pr-creation.yml deleted file mode 100644 index fa686305..00000000 --- a/.github/workflows/add-comment-on-pr-creation.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Add Comment on PR Creation - -on: - pull_request: - types: [opened] - -jobs: - add-comment: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - uses: actions/github-script@v7 - name: Add GitHub Comment for review app instructions - with: - script: | - await github.rest.issues.createComment({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.payload.pull_request.number, - body: [ - "Hi 👋 Here are the commands available for this PR:", - "", - "- `/deploy-review-app`: Deploy your changes to a review environment", - "- `/delete-review-app`: Clean up the review environment when you're done", - "- `/help`: Show detailed information about all commands", - "", - "Use `/help` to see full documentation, including configuration options." - ].join("\n") - }); diff --git a/.github/workflows/delete-review-app.yml b/.github/workflows/delete-review-app.yml index ada1a5e7..81bcaafd 100644 --- a/.github/workflows/delete-review-app.yml +++ b/.github/workflows/delete-review-app.yml @@ -26,10 +26,6 @@ env: PR_NUMBER: ${{ github.event.pull_request.number || github.event.issue.number || inputs.pr_number }} jobs: - debug: - uses: ./.github/workflows/debug-workflow.yml - with: - debug_enabled: false # Will still run if vars.DEBUG_WORKFLOW is true Process-Delete-Command: if: | (github.event_name == 'issue_comment' &&