File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,13 @@ name: check-build
22
33on :
44 push :
5- branches : [ main ]
5+ branches : ["*"] # Trigger on push to any branch
6+ branches-ignore : ["gh-pages"] # Exclude the gh-pages branch
67 pull_request :
7- branches : [ main ]
8+ branches : ["*"] # Trigger on pull request to any branch
9+ branches-ignore : ["gh-pages"] # Exclude the gh-pages branch
810 workflow_dispatch :
9- branches : [ main ]
11+ branches : ["*"] # Included ["*"] for consistency
1012
1113jobs :
1214 build :
Original file line number Diff line number Diff line change @@ -2,11 +2,13 @@ name: validate
22
33on :
44 push :
5- branches : [ main ]
5+ branches : ["*"] # Trigger on push to any branch
6+ branches-ignore : ["gh-pages"] # Exclude the gh-pages branch
67 pull_request :
7- branches : [ main ]
8+ branches : ["*"] # Trigger on pull request to any branch
9+ branches-ignore : ["gh-pages"] # Exclude the gh-pages branch
810 workflow_dispatch :
9- branches : [ main ]
11+ branches : ["*"] # Included ["*"] for consistency
1012
1113jobs :
1214 build :
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Changelog
44v3.4.0
55------
66- Setting ` -flto=auto ` in makefiles for better compiling performance
7+ - Modified the ` check-build ` and ` validate ` workflow triggers from 'main' branch only to all branches except ` gh-pages ` branch.
78
89v3.3.0
910------
You can’t perform that action at this time.
0 commit comments