Skip to content

Commit 6ccabaf

Browse files
authored
fix main branch name (#22)
Signed-off-by: Tihomir Surdilovic <tihomir@temporal.io>
1 parent 0eaa90f commit 6ccabaf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/Go-SDK-PR-Check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- "LICENSE"
2222
- "Makefile"
2323
branches:
24-
- master
24+
- main
2525
env:
2626
GO_VERSION: 1.14
2727
GOLANGLINT_CI_VERSION: v1.33.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Go SDK for Serverless Workflow
22

3-
Here you will find all the [specification types](https://github.com/serverlessworkflow/specification/blob/master/schema/workflow.json) defined by our Json Schemas, in Go.
3+
Here you will find all the [specification types](https://github.com/serverlessworkflow/specification/blob/main/schema/workflow.json) defined by our Json Schemas, in Go.
44

55
Current status of features implemented in the SDK is listed in the table below:
66

maintainer_guidelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Here are a few tips for repository maintainers.
1616

1717
## Branch Management
1818

19-
The `master` branch is is the bleeding edge. New major versions of the module
19+
The `main` branch is is the bleeding edge. New major versions of the module
2020
are cut from this branch and tagged. If you intend to submit a pull request
21-
you should use `master HEAD` as your starting point.
21+
you should use `main HEAD` as your starting point.
2222

2323
Each major release will result in a new branch and tag. For example, the
2424
release of version 1.0.0 of the project results in a `v1.0.0` tag on the
2525
release commit, and a new branch `release-1.y.z` for subsequent minor and patch
2626
level releases of that major version if necessary. However, development will continue
27-
apace on `master` for the next major version - e.g. 2.0.0. Version branches
27+
apace on `main` for the next major version - e.g. 2.0.0. Version branches
2828
are only created for each major version. Minor and patch level releases
2929
are simply tagged.

parser/testdata/applicationrequest.url.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"version": "1.0",
55
"name": "Applicant Request Decision Workflow",
66
"description": "Determine if applicant request is valid",
7-
"functions": "https://raw.githubusercontent.com/serverlessworkflow/sdk-java/master/api/src/test/resources/features/applicantrequestfunctions.json",
8-
"retries" : "https://raw.githubusercontent.com/serverlessworkflow/sdk-java/master/api/src/test/resources/features/applicantrequestretries.json",
7+
"functions": "https://raw.githubusercontent.com/serverlessworkflow/sdk-java/main/api/src/test/resources/features/applicantrequestfunctions.json",
8+
"retries" : "https://raw.githubusercontent.com/serverlessworkflow/sdk-java/main/api/src/test/resources/features/applicantrequestretries.json",
99
"states":[
1010
{
1111
"name":"CheckApplication",

0 commit comments

Comments
 (0)