Skip to content

Commit f5edc44

Browse files
committed
Rename main branch to main
1 parent 6b7404d commit f5edc44

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: "CodeQL"
22

33
on:
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:

.github/workflows/continous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Run Tests
33
on:
44
pull_request:
55
push:
6-
branches: master
6+
branches: main
77
workflow_dispatch:
88

99
jobs:

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2828
or manually run the make targets:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test:
1818
.PHONY: is-git-clean
1919
is-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; \

0 commit comments

Comments
 (0)