Skip to content

Commit 7019a34

Browse files
authored
fix: change default branch from master to main (#265)
1 parent 076ffe4 commit 7019a34

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/continuous-integration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
env:

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Lint
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
env:

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ reported the issue. Please try to include as much information as you can. Detail
2323
## Contributing via Pull Requests
2424
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
2525

26-
1. You are working against the latest source on the *master* branch.
26+
1. You are working against the latest source on the *main* branch.
2727
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
2828
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
2929

@@ -52,6 +52,6 @@ [email protected] with any additional questions or comments.
5252

5353
## Licensing
5454

55-
See the [LICENSE](https://github.com/aws-amplify/aws-sdk-swift/blob/master/LICENSE) file for our project's licensing. We will ask you confirm the licensing of your contribution.
55+
See the [LICENSE](https://github.com/aws-amplify/aws-sdk-swift/blob/main/LICENSE) file for our project's licensing. We will ask you confirm the licensing of your contribution.
5656

5757
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

codegen/smithy-aws-swift-codegen/src/main/kotlin/software/amazon/smithy/aws/swift/codegen/AWSSwiftDependency.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ enum class AWSSwiftDependency(
1717
) : SymbolDependencyContainer {
1818
AWS_CLIENT_RUNTIME(
1919
"AWSClientRuntime",
20-
"master",
20+
"main",
2121
"0.1.0",
2222
"https://github.com/awslabs/aws-sdk-swift",
2323
Resources.computeAbsolutePath("aws-sdk-swift/AWSClientRuntime", "AWSClientRuntime", "AWS_SDK_SWIFT_CI_DIR") + "/AWSClientRuntime",

0 commit comments

Comments
 (0)