giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
77 lines
1.8 KiB
Protocol Buffer
77 lines
1.8 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "google/protobuf/wrappers.proto";
|
|
|
|
package github.actions.results.api.v1;
|
|
|
|
option go_package = "gitea.dev/routers/api/actions";
|
|
|
|
message CreateArtifactRequest {
|
|
string workflow_run_backend_id = 1;
|
|
string workflow_job_run_backend_id = 2;
|
|
string name = 3;
|
|
google.protobuf.Timestamp expires_at = 4;
|
|
int32 version = 5;
|
|
google.protobuf.StringValue mime_type = 6;
|
|
}
|
|
|
|
message CreateArtifactResponse {
|
|
bool ok = 1;
|
|
string signed_upload_url = 2;
|
|
}
|
|
|
|
message FinalizeArtifactRequest {
|
|
string workflow_run_backend_id = 1;
|
|
string workflow_job_run_backend_id = 2;
|
|
string name = 3;
|
|
int64 size = 4;
|
|
google.protobuf.StringValue hash = 5;
|
|
}
|
|
|
|
message FinalizeArtifactResponse {
|
|
bool ok = 1;
|
|
int64 artifact_id = 2;
|
|
}
|
|
|
|
message ListArtifactsRequest {
|
|
string workflow_run_backend_id = 1;
|
|
string workflow_job_run_backend_id = 2;
|
|
google.protobuf.StringValue name_filter = 3;
|
|
google.protobuf.Int64Value id_filter = 4;
|
|
}
|
|
|
|
message ListArtifactsResponse {
|
|
repeated ListArtifactsResponse_MonolithArtifact artifacts = 1;
|
|
}
|
|
|
|
message ListArtifactsResponse_MonolithArtifact {
|
|
string workflow_run_backend_id = 1;
|
|
string workflow_job_run_backend_id = 2;
|
|
int64 database_id = 3;
|
|
string name = 4;
|
|
int64 size = 5;
|
|
google.protobuf.Timestamp created_at = 6;
|
|
}
|
|
|
|
message GetSignedArtifactURLRequest {
|
|
string workflow_run_backend_id = 1;
|
|
string workflow_job_run_backend_id = 2;
|
|
string name = 3;
|
|
}
|
|
|
|
message GetSignedArtifactURLResponse {
|
|
string signed_url = 1;
|
|
}
|
|
|
|
message DeleteArtifactRequest {
|
|
string workflow_run_backend_id = 1;
|
|
string workflow_job_run_backend_id = 2;
|
|
string name = 3;
|
|
}
|
|
|
|
message DeleteArtifactResponse {
|
|
bool ok = 1;
|
|
int64 artifact_id = 2;
|
|
}
|