Skip to content

Commit

Permalink
ci: Setting Github actions to run on hotfix branches
Browse files Browse the repository at this point in the history
Github Actions was running on all branches except for hotfix branches, so adding these to the list since they are just as important to validate builds with as develop, master, and release branches are.

Signed-off-by: Tyler Erickson <tyler.j.erickson@seagate.com>
  • Loading branch information
Tyler Erickson committed Mar 22, 2023
1 parent 879dd76 commit fbde92c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/c-cpp.yml
Expand Up @@ -2,7 +2,7 @@ name: C/C++ CI

on:
push:
branches: [ develop, master, release/*, feature/* ]
branches: [ develop, master, release/*, feature/*, hotfix/* ]
pull_request:
branches: [ develop ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/meson.yml
Expand Up @@ -2,7 +2,7 @@ name: CI for meson build

on:
push:
branches: [ develop, master, release/*, feature/* ]
branches: [ develop, master, release/*, feature/*, hotfix/* ]
tags: [ v* ]
pull_request:
branches: [ develop ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/msbuild.yml
Expand Up @@ -7,6 +7,7 @@ on:
- develop
- release/*
- feature/*
- hotfix/*
pull_request:
branches:
- develop
Expand Down

0 comments on commit fbde92c

Please sign in to comment.