diff --git a/private/gen/proto/go/buf/alpha/audit/v1alpha1/event.pb.go b/private/gen/proto/go/buf/alpha/audit/v1alpha1/event.pb.go index db9f9ae3cd..dd2e36bee6 100644 --- a/private/gen/proto/go/buf/alpha/audit/v1alpha1/event.pb.go +++ b/private/gen/proto/go/buf/alpha/audit/v1alpha1/event.pb.go @@ -2535,9 +2535,9 @@ type PayloadPluginCommitPushed struct { OwnerName string `protobuf:"bytes,2,opt,name=owner_name,json=ownerName,proto3" json:"owner_name,omitempty"` // plugin_id is the id of the plugin. PluginId string `protobuf:"bytes,3,opt,name=plugin_id,json=pluginId,proto3" json:"plugin_id,omitempty"` - // repository_name is the name of the plugin. + // plugin_name is the name of the plugin. PluginName string `protobuf:"bytes,4,opt,name=plugin_name,json=pluginName,proto3" json:"plugin_name,omitempty"` - // p1_digest is the plugin's p1 digest. + // p1_digest is the p1 digest of the pushed plugin commit. P1Digest string `protobuf:"bytes,5,opt,name=p1_digest,json=p1Digest,proto3" json:"p1_digest,omitempty"` } diff --git a/proto/buf/alpha/audit/v1alpha1/event.proto b/proto/buf/alpha/audit/v1alpha1/event.proto index 7c4a9af4d4..67df286c86 100644 --- a/proto/buf/alpha/audit/v1alpha1/event.proto +++ b/proto/buf/alpha/audit/v1alpha1/event.proto @@ -385,9 +385,9 @@ message PayloadPluginCommitPushed { string owner_name = 2; // plugin_id is the id of the plugin. string plugin_id = 3; - // repository_name is the name of the plugin. + // plugin_name is the name of the plugin. string plugin_name = 4; - // p1_digest is the plugin's p1 digest. + // p1_digest is the p1 digest of the pushed plugin commit. string p1_digest = 5; }