mirror of
https://github.com/actions/actions-runner-controller.git
synced 2026-03-22 08:43:27 +08:00
10 lines
255 B
Go
10 lines
255 B
Go
package v1alpha1
|
|
|
|
// ResourceMeta carries metadata common to all internal resources
|
|
type ResourceMeta struct {
|
|
// +optional
|
|
Labels map[string]string `json:"labels,omitempty"`
|
|
// +optional
|
|
Annotations map[string]string `json:"annotations,omitempty"`
|
|
}
|