Skip to content

Commit eedeafc

Browse files
build: switching github actions from master to main
1 parent 6001318 commit eedeafc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/changelog-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Changelog preview
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
types: [opened, synchronize]
88

99
jobs:

.github/workflows/check-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
branches:
66
- develop
7-
- master
7+
- main
88
- 'v[0-9]+.[0-9]+.[0-9]+*beta*'
99
types: [opened, synchronize]
1010

.github/workflows/docusaurus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: docusaurus
33
on:
44
push:
55
branches:
6-
- master # default branch name for each repo that docs should be push from
6+
- main # default branch name for each repo that docs should be push from
77
- develop
88
paths:
99
- docusaurus/**
@@ -15,6 +15,6 @@ jobs:
1515
- name: push
1616
uses: GetStream/push-stream-chat-docusaurus-action@main
1717
with:
18-
target-branch: ${{ github.ref == 'refs/heads/master' && 'production' || 'staging' }}
18+
target-branch: ${{ github.ref == 'refs/heads/main' && 'production' || 'staging' }}
1919
env:
2020
DOCUSAURUS_GH_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
publish-release:
@@ -42,5 +42,5 @@ jobs:
4242
git stash
4343
git checkout develop
4444
git pull origin develop
45-
git merge master -m "chore: merge back release [skip ci]"
45+
git merge main -m "chore: merge back release [skip ci]"
4646
git push origin develop

0 commit comments

Comments
 (0)