Skip to content

Commit a2c46f0

Browse files
committed
chore(project): Rename master branch to main
1 parent 2f740fa commit a2c46f0

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/build.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Build
55

66
on:
77
push:
8-
branches: [master]
8+
branches: [main]
99
pull_request:
10-
branches: [master]
10+
branches: [main]
1111

1212
jobs:
1313
build:

.github/workflows/docs.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Docs
55

66
on:
77
push:
8-
branches: [master]
8+
branches: [main]
99
pull_request:
10-
branches: [master]
10+
branches: [main]
1111

1212
jobs:
1313
build-docs:

.github/workflows/lint.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Lint
55

66
on:
77
push:
8-
branches: [master]
8+
branches: [main]
99
pull_request:
10-
branches: [master]
10+
branches: [main]
1111

1212
jobs:
1313
run-linter:

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
branches:
4-
- master
4+
- main
55

66
permissions:
77
contents: write

.github/workflows/test-e2e.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: E2E tests
55

66
on:
77
push:
8-
branches: [master]
8+
branches: [main]
99
pull_request:
10-
branches: [master]
10+
branches: [main]
1111

1212
jobs:
1313
test-e2e:

.github/workflows/test-unit.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Unit tests
55

66
on:
77
push:
8-
branches: [master]
8+
branches: [main]
99
pull_request:
10-
branches: [master]
10+
branches: [main]
1111

1212
jobs:
1313
test-unit:

docs/.vuepress/navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ export default [
77
},
88
{
99
text: 'Changelog',
10-
link: `${pkg.homepage}/blob/master/CHANGELOG.md`,
10+
link: `${pkg.homepage}/blob/main/CHANGELOG.md`,
1111
},
1212
]

scripts/deployDocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ git add -A
1414
git commit -m 'chore(docs): deploying'
1515

1616
# if you are deploying to https://<USERNAME>.github.io/<REPO>
17-
git push -f [email protected]:mst101/vue-datepicker.git master:gh-pages
17+
git push -f [email protected]:mst101/vue-datepicker.git main:gh-pages
1818

1919
cd -

0 commit comments

Comments
 (0)