Skip to content

Commit

Permalink
Adjust CI config so it runs in all branches
Browse files Browse the repository at this point in the history
Before this change, CI would only trigger on commits to master branch.
When contributor creates a branch that would later become a PR, they do not want to use master branch.
Instead, they want to use feature-branch.
But before this commit, CI would not run in non-master branch at all, so contributor is unable to test their changes before creating a PR to upstream repository.

Signed-off-by: Marat Radchenko <[email protected]>
  • Loading branch information
slonopotamus committed May 28, 2024
1 parent d29df4a commit eed419a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [ master ]
branches: [ '*' ]
pull_request:
branches: [ master ]

Expand Down

0 comments on commit eed419a

Please sign in to comment.