Skip to content

Commit 4be749f

Browse files
authored
devops: use main branch instead of master (#699)
1 parent f515d9f commit 4be749f

File tree

7 files changed

+11
-15
lines changed

7 files changed

+11
-15
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44
push:
55
branches:
6-
- master
6+
- main
77
jobs:
88
build:
99
timeout-minutes: 30

.github/workflows/publish_canary_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "devrelease:docker"
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
jobs:
88
publish-canary-docker:
99
name: "publish to DockerHub"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Build & Test
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
- release-*
77
pull_request:
88
branches:
9-
- master
9+
- main
1010
- release-*
1111
jobs:
1212
dev:

.github/workflows/test_cli.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@ name: Test CLI
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
- release-*
77
pull_request:
88
branches:
9-
- master
9+
- main
1010
- release-*
1111
jobs:
1212
verify:
1313
timeout-minutes: 30
14-
strategy:
15-
fail-fast: true
1614
runs-on: ubuntu-latest
1715
steps:
1816
- uses: actions/checkout@v2

.github/workflows/test_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- '.github/workflows/test_docker.yml'
66
- 'Dockerfile*'
77
branches:
8-
- master
8+
- main
99
- release-*
1010
pull_request:
1111
paths:
@@ -14,7 +14,7 @@ on:
1414
- scripts/CLI_VERSION
1515
- '**/pom.xml'
1616
branches:
17-
- master
17+
- main
1818
- release-*
1919
jobs:
2020
test:

.github/workflows/verify_api.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,21 @@ name: Verify API
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
- release-*
77
paths:
88
- 'scripts/*'
99
- 'api-generator/*'
1010
pull_request:
1111
branches:
12-
- master
12+
- main
1313
- release-*
1414
paths:
1515
- 'scripts/**'
1616
- 'api-generator/**'
1717
jobs:
1818
verify:
1919
timeout-minutes: 30
20-
strategy:
21-
fail-fast: true
2220
runs-on: ubuntu-latest
2321
steps:
2422
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ You can also browse [javadoc online](https://www.javadoc.io/doc/com.microsoft.pl
179179

180180
## Contributing
181181

182-
Follow [the instructions](https://github.com/microsoft/playwright-java/blob/master/CONTRIBUTING.md#getting-code) to build the project from source and install the driver.
182+
Follow [the instructions](https://github.com/microsoft/playwright-java/blob/main/CONTRIBUTING.md#getting-code) to build the project from source and install the driver.
183183

184184
## Is Playwright for Java ready?
185185

0 commit comments

Comments
 (0)