Skip to content

Commit 809cf4e

Browse files
authored
GitHubActions(build job): relax branch restrictions (#3085)
Restricting CI to certain branch prevents contributors to know the CI status of their contributions (e.g. the result from building and running unit tests after pushing their work to their fork) before they propose a PullRequest; because normally people create branches when they want to start to work on something (instead of having to use the 'main' branch of their fork).
1 parent 4739198 commit 809cf4e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: build
33
on:
44
push:
55
branches:
6-
- main
7-
- release/*
6+
- '**'
87
pull_request:
98
paths-ignore:
109
- "**.md"

0 commit comments

Comments
 (0)