From ede9037b52f5a89a61494460d9cead05b3504156 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Mon, 20 Apr 2026 21:57:34 +0200 Subject: [PATCH 1/3] Try pulling the go repo Signed-off-by: Nikolai Rodionov --- proto/test/v1/test_v1.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proto/test/v1/test_v1.proto b/proto/test/v1/test_v1.proto index 159f506..149c8ed 100644 --- a/proto/test/v1/test_v1.proto +++ b/proto/test/v1/test_v1.proto @@ -7,8 +7,13 @@ option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg */ service TestService { rpc Ping (PingRequest) returns (PingResponse) {} + rpc Pong (PongRequest) returns (PongResponse) {} } message PingRequest {} message PingResponse {} + +message PongRequest {} + +message PongResponse {} -- 2.49.1 From 00cca550c283ba39299b01d4a51b100f35e2a2f4 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Mon, 20 Apr 2026 21:59:43 +0200 Subject: [PATCH 2/3] Try pulling the go repo Signed-off-by: Nikolai Rodionov --- .woodpecker/go-generate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/go-generate.yaml b/.woodpecker/go-generate.yaml index 0a68b7c..98ee870 100644 --- a/.woodpecker/go-generate.yaml +++ b/.woodpecker/go-generate.yaml @@ -33,4 +33,4 @@ steps: - git -C ./target checkout $CI_COMMIT_BRANCH || git -C ./target checkout -b $CI_COMMIT_BRANCH - git -C ./target add . - 'git -C ./target commit -m "Update protobuf definitions: $CI_COMMIT_SHA"' - - git -C ./target push + - git -C ./target push --set-upstream origin $CI_COMMIT_BRANCH -- 2.49.1 From 06e04ee8a7d472ab5b266a3e931a2304a4d087a1 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Mon, 20 Apr 2026 22:01:25 +0200 Subject: [PATCH 3/3] Try pulling the go repo Signed-off-by: Nikolai Rodionov --- .woodpecker/go-generate.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker/go-generate.yaml b/.woodpecker/go-generate.yaml index 98ee870..e1569b8 100644 --- a/.woodpecker/go-generate.yaml +++ b/.woodpecker/go-generate.yaml @@ -19,7 +19,8 @@ steps: image: bufbuild/buf commands: - buf generate - - cp -r ./gen/go ./target/pkg + - rm -rf ./target/pkg/* + - cp -r ./gen/go/* ./target/pkg - name: Clone go repo image: alpine environment: -- 2.49.1