Skip to content

Commit

Permalink
Test PR merge
Browse files Browse the repository at this point in the history
Signed-off-by: Kipruto <[email protected]>
  • Loading branch information
kelvinkipruto committed Jun 19, 2024
1 parent 39f2921 commit 16d1405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeforafrica-deploy-review-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "apps/codeforafrica/**"
- "Dockerfile.codeforafrica"
- ".github/workflows/codeforafrica-deploy-review-app.yml"
# By default, a workflow only runs when a pull_request event's activity type is opened, synchronize, or reopened. We need to add closed to the list of activity types to ensure that the workflow runs when a pull request is closed.
# By default, a workflow only runs when a pull_request event's activity type is opened, synchronize, or reopened.
types: [opened, reopened, closed, synchronize]
concurrency:
group: "${{ github.workflow }} @ ${{ github.ref }}"
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
destroy_review_app:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && (github.event.action == 'closed' || github.event.action == 'merged')
if: github.event_name == 'pull_request' && github.event.action == 'closed'
steps:
- name: Destroy review app
uses: dokku/github-action@master
Expand Down

0 comments on commit 16d1405

Please sign in to comment.