Skip to content

Commit

Permalink
feat: use main as default branch
Browse files Browse the repository at this point in the history
  • Loading branch information
emuvente committed Nov 11, 2021
1 parent 2c6a532 commit 8ef95de
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Ui Tests
on:
push:
branches:
- master
- 'release-*'
- main
- next
pull_request:
branches:
- master
- 'release-*'
- main
- next

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/storybook-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
name: Deploy Storybook to GitHub Pages

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
# events but only for the main branch
on:
push:
branches: [ master ]
branches: [ main ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

> a.k.a. Uue Lewis and the Views
[![Build Status](https://github.com/kiva/ui/workflows/Ui%20Tests/badge.svg?branch=master)](https://github.com/kiva/ui/actions)
[![Coverage Status](https://coveralls.io/repos/github/kiva/ui/badge.svg?branch=master)](https://coveralls.io/github/kiva/ui?branch=master)
[![Build Status](https://github.com/kiva/ui/workflows/Ui%20Tests/badge.svg?branch=main)](https://github.com/kiva/ui/actions)
[![Coverage Status](https://coveralls.io/repos/github/kiva/ui/badge.svg?branch=main)](https://coveralls.io/github/kiva/ui?branch=main)
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=kiva/ui)](https://dependabot.com)
[![Known Vulnerabilities](https://snyk.io/test/github/kiva/ui/badge.svg)](https://snyk.io/test/github/kiva/ui)

Expand Down Expand Up @@ -90,4 +90,3 @@ $ npm test
```

For some more details, checkout the [template this is based on](http://vuejs-templates.github.io/webpack/) and the [docs for vue-loader](http://vuejs.github.io/vue-loader).

2 changes: 1 addition & 1 deletion deploy/charts/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
restartPolicy: Always
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" # In Jenkins, need to call helm with --set image.tag=master-XY
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" # In Jenkins, need to call helm with --set image.tag=vX.Y.Z
command: ["tini"]
args: ["--", "node", "server/index.js", "--port={{ .Values.service.port }}", "--config={{ .Values.deployenv.environment }}"]
imagePullPolicy: {{ .Values.image.pullPolicy }}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Styleguide/StyleguideIntro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a href="https://foundation.zurb.com/sites/docs/sass.html#the-settings-file" target="_blank">
_settings.scss</a>
file. The nice thing about the settings file is that you can override it with your own
<a href="https://github.com/kiva/ui/blob/master/src/assets/scss/_settings.scss" target="_blank">
<a href="https://github.com/kiva/ui/blob/main/src/assets/scss/_settings.scss" target="_blank">
_settings.scss</a>
file.
</p>
Expand Down

0 comments on commit 8ef95de

Please sign in to comment.