Skip to content

Commit f36ee4c

Browse files
authored
Remove branch filter on PR triggers (#673 / #674)
This commit removes the branch filtering on PRs. It prevented the build pipeline from triggering in certain cases but we want to trigger it for all PRs, so the filtering just did not make sense. Closes: #673 PR: #674
1 parent d9e926e commit f36ee4c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ on:
77
# We want to trigger our builds all the time for the default branch
88
# except when Shipkit creates a new version tag
99
push:
10-
branches: 'main'
10+
branches: ['main']
1111
tags-ignore:
1212
- 'v**'
1313
# Each pull request is important to us, doesn't matter from which branch.
1414
# Furthermore, we do not want to build on just the default GitHub Action
1515
# events, we also want to react onto `labeled` events for our extended
1616
# build execution
1717
pull_request:
18-
branches: '*'
1918
types: [labeled, opened, synchronize, reopened]
2019
# We also utilize this pipeline for releasing. By providing a `version`
2120
# and setting `releasing` to `true`, we can trigger a release.

0 commit comments

Comments
 (0)