We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 867a8bf commit 514b7ecCopy full SHA for 514b7ec
.github/workflows/build-mcpb.yml
@@ -4,6 +4,9 @@ on:
4
push:
5
branches:
6
- 'main'
7
+ pull_request:
8
+ branches:
9
+ - 'main'
10
release:
11
types: [published]
12
@@ -30,7 +33,7 @@ jobs:
30
33
needs: [pre-check]
31
34
if: |
32
35
always() &&
- (github.event_name == 'release' || needs.pre-check.outputs.skip-workflow == 'false')
36
+ (github.event_name == 'release' || github.event_name == 'pull_request' || needs.pre-check.outputs.skip-workflow == 'false')
37
strategy:
38
fail-fast: false
39
matrix:
0 commit comments