File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: "CodeQL"
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [ main ]
66 pull_request :
7- branches : [ master ]
7+ branches : [ main ]
88 schedule :
99 - cron : ' 0 6 * * 1'
1010 workflow_dispatch :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Run Tests
33on :
44 pull_request :
55 push :
6- branches : master
6+ branches : main
77 workflow_dispatch :
88
99jobs :
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ make format
2222```
2323
2424## Releasing a new SDK version
25- * Checkout the ` master ` branch
25+ * Checkout the ` main ` branch
2626* Either run ` make `
2727
2828or manually run the make targets:
Original file line number Diff line number Diff line change 1818.PHONY : is-git-clean
1919is-git-clean :
2020 @status=$$(git fetch origin && git status -s -b ) ; \
21- if test " $$ {status}" ! = " ## master ...origin/master " ; then \
21+ if test " $$ {status}" ! = " ## main ...origin/main " ; then \
2222 echo ; \
2323 echo Git working directory is dirty, aborting >&2 ; \
2424 false ; \
You can’t perform that action at this time.
0 commit comments