Skip to content

Commit 1cbb876

Browse files
committed
refactor: master -> main
1 parent 1917526 commit 1cbb876

18 files changed

Lines changed: 33 additions & 33 deletions

File tree

.github/workflows/e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [created]
66
pull_request:
77
branches:
8-
- master
8+
- main
99
- v6
1010
paths:
1111
- "Dockerfile"

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [created]
66
pull_request:
77
branches:
8-
- master
8+
- main
99
- v6
1010
paths:
1111
- "**.go"

.github/workflows/npm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test NPM Installer
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
paths:
88
- "dist/npm/**"
99
- ".github/workflows/npm.yaml"

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on:
55
types: [created]
66
push:
77
branches:
8-
- master
8+
- main
99
paths:
1010
- "Dockerfile"
1111
- "**.go"
1212
- "hack/coverage.bash"
1313
- ".github/workflows/release.yaml"
1414
pull_request:
1515
branches:
16-
- master
16+
- main
1717
paths:
1818
- "Dockerfile"
1919
- "**.go"
@@ -115,7 +115,7 @@ jobs:
115115
RELEASE_VERSION: ${{ steps.get_version.outputs.release_version }}
116116
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
117117
publish-next-image:
118-
if: github.ref == 'refs/heads/master'
118+
if: github.ref == 'refs/heads/main'
119119
runs-on: ubuntu-18.04
120120
steps:
121121
- uses: actions/checkout@v1

.github/workflows/ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test UI
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
paths:
88
- "ui/**"
99
- "hack/build-ui.bash"

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [created]
66
pull_request:
77
branches:
8-
- master
8+
- main
99
- v6
1010
paths:
1111
- "**.go"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### **[Website](https://devspace.sh)****[Quickstart](#quickstart)****[Documentation](https://devspace.sh/cli/docs/introduction)****[Blog](https://loft.sh/blog)****[Twitter](https://twitter.com/devspace)**
44

5-
![Build Status Passing](https://img.shields.io/github/workflow/status/loft-sh/devspace/Test%20&%20Release%20CLI%20Version/master?style=for-the-badge)
5+
![Build Status Passing](https://img.shields.io/github/workflow/status/loft-sh/devspace/Test%20&%20Release%20CLI%20Version/main?style=for-the-badge)
66
![Latest Release](https://img.shields.io/github/v/release/loft-sh/devspace?style=for-the-badge&label=Latest%20Release&color=%23007ec6)
77
![License: Apache-2.0](https://img.shields.io/github/license/loft-sh/devspace?style=for-the-badge&color=%23007ec6)
88
![Total Downloads (GitHub Releases)](https://img.shields.io/github/downloads/loft-sh/devspace/total?style=for-the-badge&label=Total%20Downloads&color=%23007ec6)

docs/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module.exports = {
7676
routeBasePath: '/',
7777
sidebarPath: require.resolve('./sidebars.js'),
7878
showLastUpdateTime: true,
79-
editUrl: 'https://github.com/loft-sh/devspace/edit/master/docs/',
79+
editUrl: 'https://github.com/loft-sh/devspace/edit/main/docs/',
8080
lastVersion: "current",
8181
versions: {
8282
current: {

docs/pages/_partials/config-dependencies.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dependencies: # struct[] | Array of dependencies (other p
33
- source: # struct | Defines where to find the dependency (exactly one source is allowed)
44
git: https://github.com/my-repo # string | HTTP(S) URL of the git repository (recommended method for referencing dependencies, must have the format of the git remote repo as usually checked out via git clone)
55
subPath: repo/sub/path # string | Path within the git repo where devspace.yaml can be found
6-
branch: master # string | Git branch to checkout
6+
branch: main # string | Git branch to checkout
77
tag: v1.2.3 # string | Git tag to checkout
88
revision: ac66e49 # string | Git revision (commit has) to checkout
99
disableShallow: false # bool | Allows to disable shallow git clones using "--depth 1"

docs/pages/_partials/config-profiles.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ profiles: # struct[] | Array of config profiles
66
source: # | Optional source where to find the profile
77
git: https://github.com/my-repo # string | HTTP(S) URL of the git repository to retrieve the profile from
88
subPath: repo/sub/path # string | Path within the git repo where devspace.yaml can be found
9-
branch: master # string | Git branch to checkout
9+
branch: main # string | Git branch to checkout
1010
tag: v1.2.3 # string | Git tag to checkout
1111
revision: ac66e49 # string | Git revision (commit has) to checkout
1212
disableShallow: false # bool | Allows to disable shallow git clones using "--depth 1"

0 commit comments

Comments
 (0)