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.
1 parent 046823f commit ebbb9eaCopy full SHA for ebbb9ea
2 files changed
.github/workflows/container.yml
@@ -26,6 +26,7 @@ jobs:
26
uses: docker/setup-qemu-action@v4
27
28
- name: Build and Push Container
29
+ if: ${{ github.event_name != 'pull_request' }}
30
uses: wgtechlabs/container-build-flow-action@v1.7.1
31
with:
32
registry: both
.github/workflows/package.yml
@@ -55,7 +55,7 @@ jobs:
55
npm-token: ${{ secrets.NPM_TOKEN }}
56
github-token: ${{ secrets.GITHUB_TOKEN }}
57
publish-enabled: 'true'
58
- dry-run: ${{ github.event.inputs.dry-run || 'false' }}
+ dry-run: ${{ github.event_name == 'pull_request' && 'true' || github.event.inputs.dry-run || 'false' }}
59
build-script: 'build'
60
audit-enabled: 'true'
61
audit-level: 'high'
0 commit comments