Merge branch 'main' into avm99963-monorail

Merged commit 4137ed7879acadbf891e8c471108acb874dae886.

GitOrigin-RevId: b6100ffc5b1da355a35f37b13fcaaf746ee8b307
diff --git a/api/v3/api_proto/issues.proto b/api/v3/api_proto/issues.proto
index 988f958..3930143 100644
--- a/api/v3/api_proto/issues.proto
+++ b/api/v3/api_proto/issues.proto
@@ -7,7 +7,7 @@
 
 package monorail.v3;
 
-option go_package = "api/v3/api_proto";
+option go_package = "infra/monorailv2/api/v3/api_proto";
 
 import "google/protobuf/field_mask.proto";
 import "google/api/field_behavior.proto";
@@ -446,7 +446,7 @@
 }
 
 // The request message for MakeIssue.
-// Next available tag: 5
+// Next available tag: 6
 message MakeIssueRequest {
   // The name of the project the issue should belong to.
   string parent = 1 [
@@ -458,4 +458,6 @@
   string description = 3;
   // The type of notification the creation should trigger.
   NotifyType notify_type = 4;
+  // The attachment that will be attached to each new issue.
+  repeated AttachmentUpload uploads = 5;
 }