From ed81d3471d3e5f23b3101d2fc645db12eb9555d4 Mon Sep 17 00:00:00 2001 From: Julia Date: Wed, 3 Jan 2024 10:50:32 +0100 Subject: [PATCH] deploy review app when the PR is reopened --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 14a6edc..71dc928 100644 --- a/action.yml +++ b/action.yml @@ -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. @@ -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