Skip to content

Commit

Permalink
Fix branch name in workflow (#87)
Browse files Browse the repository at this point in the history
Signed-off-by: hoangtungdinh <[email protected]>

Signed-off-by: hoangtungdinh <[email protected]>
  • Loading branch information
hoangtungdinh committed Jun 18, 2024
1 parent 0339002 commit eff0729
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-on-change-linux-bare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
# execute on every PR made targeting the branches bellow
pull_request:
branches:
- master
- develop # can be removed on master merge
- main
- develop # can be removed on main merge
paths: # we only include paths critical for building to avoid unnecessary runs
- src/**
- include/**
Expand All @@ -19,8 +19,8 @@ on:
# execute on every push made targeting the branches bellow
push:
branches:
- master
- develop # can be removed on master merge
- main
- develop # can be removed on main merge
paths: # we only include paths critical for building to avoid unnecessary runs
- src/**
- include/**
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-on-change-linux-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
# execute on every PR made targeting the branches bellow
pull_request:
branches:
- master
- develop # can be removed on master merge
- main
- develop # can be removed on main merge
paths: # we only include paths critical for building to avoid unnecessary runs
- src/**
- include/**
Expand All @@ -19,8 +19,8 @@ on:
# execute on every push made targeting the branches bellow
push:
branches:
- master
- develop # can be removed on master merge
- main
- develop # can be removed on main merge
paths: # we only include paths critical for building to avoid unnecessary runs
- src/**
- include/**
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-on-change-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
# execute on every PR made targeting the branches bellow
pull_request:
branches:
- master
- develop # can be removed on master merge
- main
- develop # can be removed on main merge
paths: # we only include paths critical for building to avoid unnecessary runs
- src/**
- include/**
Expand All @@ -19,8 +19,8 @@ on:
# execute on every push made targeting the branches bellow
push:
branches:
- master
- develop # can be removed on master merge
- main
- develop # can be removed on main merge
paths: # we only include paths critical for building to avoid unnecessary runs
- src/**
- include/**
Expand Down

0 comments on commit eff0729

Please sign in to comment.