Skip to content

Commit cf1d08f

Browse files
authored
chore: bootstrap releases for path: . (#152)
* chore: bootstrap releases for path: . * feat: add config for release-please * feat(.github): add release-please workflow
1 parent c9e7809 commit cf1d08f

File tree

9 files changed

+60
-351
lines changed

9 files changed

+60
-351
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
vendor
22
*.out
3+
go.work.sum

.release-please-manifest.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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+
}

go.work.sum

Lines changed: 0 additions & 348 deletions
This file was deleted.

integrationtest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/get-eventually/go-eventually/integrationtest
33
go 1.18
44

55
require (
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

integrationtest/go.sum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.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=
44
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
55
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
66
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

oteleventually/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ require (
1212
require (
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
)

oteleventually/go.sum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbV
77
github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
88
github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
99
github.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=
1111
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1212
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
1313
go.opentelemetry.io/otel v1.17.0 h1:MW+phZ6WZ5/uk2nd93ANk/6yJ+dVrvNWUjGhnnFU5jM=

release-please-config.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
}

0 commit comments

Comments
 (0)