Skip to content

Commit 1fbfee8

Browse files
committed
finish master to main migration
1 parent 484700a commit 1fbfee8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ main, master ]
7+
branches: [ main ]
88

99
jobs:
1010
cmake_test:

buildscripts/pre_release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [ ! grep -q "^\#\# \[Unreleased\]$" $changelog_file ]; then
5050
exit 1
5151
fi
5252

53-
git checkout -b pre_release_${tag} master
53+
git checkout -b pre_release_${tag} main
5454
if [ $? -ne 0 ]; then
5555
echo "Error: Cannot create release branch. Ensure you have sufficient permissions to repo and try again."
5656
exit 1
@@ -67,5 +67,5 @@ fi
6767
git add CHANGELOG.md
6868
git commit -m "Prepare for releasing ${tag}"
6969

70-
echo "Now validate the chages using git diff master, create the ${tag} and push changes to upstream"
70+
echo "Now validate the changes using git diff main, create the ${tag} and push changes to upstream"
7171
echo

0 commit comments

Comments
 (0)