From 1f50fad4172476267c4daea5b0d67f152b68bf38 Mon Sep 17 00:00:00 2001 From: Judah Meek Date: Tue, 29 Apr 2025 20:03:25 -0500 Subject: [PATCH 1/2] fix --- .github/workflows/delete-review-app.yml | 4 ---- 1 file changed, 4 deletions(-) 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' && From 602063097a1b48deb467427eece500bbaadedc32 Mon Sep 17 00:00:00 2001 From: Judah Meek Date: Tue, 29 Apr 2025 20:05:35 -0500 Subject: [PATCH 2/2] fixes --- .../workflows/add-comment-on-pr-creation.yml | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/add-comment-on-pr-creation.yml 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") - });