Skip to content

Commit

Permalink
deploy review app when the PR is reopened
Browse files Browse the repository at this point in the history
  • Loading branch information
juliamrch committed Jan 3, 2024
1 parent d0ebf2e commit ed81d34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ branding:
color: red
on:
pull_request_target:
types: [opened, closed, synchronize]
types: [opened, closed, synchronize, reopened]
branches: [ main ]

# Inject these secrets in your GitHub repository.
Expand All @@ -21,7 +21,7 @@ env:

jobs:
deploy:
if: github.event.action == 'opened'
if: github.event.action == 'opened'|| github.event.action == 'reopened'
runs-on: ubuntu-latest
permissions:
issues: write
Expand Down

0 comments on commit ed81d34

Please sign in to comment.