File tree Expand file tree Collapse file tree 9 files changed +60
-351
lines changed
Expand file tree Collapse file tree 9 files changed +60
-351
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches :
4+ - main
5+
6+ concurrency :
7+ group : ${{ github.workflow }}-${{ github.ref }}
8+ cancel-in-progress : true
9+
10+ name : release-please
11+ jobs :
12+ release-please :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Release
16+ uses : google-github-actions/release-please-action@v3
17+ id : release
18+ with :
19+ release-type : go
20+ command : manifest
21+ monorepo-tags : true
Original file line number Diff line number Diff line change 11vendor
22* .out
3+ go.work.sum
Original file line number Diff line number Diff line change 1+ {
2+ "core" : " 0.2.0" ,
3+ "firestore" : " 0.2.0" ,
4+ "oteleventually" : " 0.2.0" ,
5+ "postgres" : " 0.2.0" ,
6+ "serdes" : " 0.2.0" ,
7+ "integrationtest" : " 0.2.0"
8+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/get-eventually/go-eventually/integrationtest
33go 1.18
44
55require (
6- github.com/google/uuid v1.3.0
6+ github.com/google/uuid v1.3.1
77 github.com/stretchr/testify v1.8.4
88 google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc
99 google.golang.org/protobuf v1.31.0
Original file line number Diff line number Diff line change 11github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
22github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
3- github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I =
3+ github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4 =
44github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE =
55github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY =
66github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
Original file line number Diff line number Diff line change @@ -12,5 +12,6 @@ require (
1212require (
1313 github.com/go-logr/logr v1.2.4 // indirect
1414 github.com/go-logr/stdr v1.2.2 // indirect
15+ github.com/google/uuid v1.3.1 // indirect
1516 golang.org/x/sync v0.3.0 // indirect
1617)
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbV
77github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag =
88github.com/go-logr/stdr v1.2.2 /go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE =
99github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
10- github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I =
10+ github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4 =
1111github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
1212github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk =
1313go.opentelemetry.io/otel v1.17.0 h1:MW+phZ6WZ5/uk2nd93ANk/6yJ+dVrvNWUjGhnnFU5jM =
Original file line number Diff line number Diff line change 1+ {
2+ "release-type" : " go" ,
3+ "bump-minor-pre-major" : true ,
4+ "bump-patch-for-minor-pre-major" : true ,
5+ "packages" : {
6+ "core" : {
7+ "package-name" : " core"
8+ },
9+ "firestore" : {
10+ "package-name" : " firestore"
11+ },
12+ "oteleventually" : {
13+ "package-name" : " oteleventually"
14+ },
15+ "postgres" : {
16+ "package-name" : " postgres"
17+ },
18+ "serdes" : {
19+ "package-name" : " serdes"
20+ },
21+ "integrationtest" : {
22+ "package-name" : " integrationtest"
23+ }
24+ },
25+ "$schema" : " https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
26+ }
You can’t perform that action at this time.
0 commit comments