We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea6f472 + 52b680c commit b598455Copy full SHA for b598455
1 file changed
.github/workflows/deploy.yaml
@@ -47,7 +47,7 @@ jobs:
47
environment:
48
name: acceptance
49
url: ${{ steps.get_brancher_hostname.outputs.BRANCHER_URL }}
50
- if: github.ref != 'refs/heads/master'
+ if: github.event_name == 'pull_request_target'
51
container: quay.io/hypernode/deploy:latest-php8.4-node22
52
steps:
53
- uses: actions/checkout@v3
@@ -103,7 +103,7 @@ jobs:
103
104
name: production
105
url: https://docs.hypernode.io
106
- if: github.ref == 'refs/heads/master'
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
107
108
109
0 commit comments