diff --git a/.ci/scripts/changelog.tmpl b/.ci/scripts/changelog.tmpl index 0a8fa5a760a2..cc65ade01897 100644 --- a/.ci/scripts/changelog.tmpl +++ b/.ci/scripts/changelog.tmpl @@ -15,7 +15,7 @@ NOTES: {{ end -}} {{- end -}} -{{- $features := combineTypes .NotesByType.feature (index .NotesByType "new-resource" ) (index .NotesByType "new-data-source") (index .NotesByType "new-ephemeral") (index .NotesByType "new-function") (index .NotesByType "new-guide") }} +{{- $features := combineTypes .NotesByType.feature (index .NotesByType "new-resource" ) (index .NotesByType "new-data-source") (index .NotesByType "new-ephemeral") (index .NotesByType "new-function") (index .NotesByType "new-action") (index .NotesByType "new-guide") }} {{- if $features }} FEATURES: diff --git a/.ci/scripts/release-note.tmpl b/.ci/scripts/release-note.tmpl index c687085d924d..55ac0e89c6e4 100644 --- a/.ci/scripts/release-note.tmpl +++ b/.ci/scripts/release-note.tmpl @@ -7,6 +7,8 @@ * **New Ephemeral Resource:** `{{.Body}}` ([#{{- .Issue -}}](https://github.com/hashicorp/terraform-provider-aws/issues/{{- .Issue -}})) {{- else if eq "new-function" .Type -}} * **New Function:** `{{.Body}}` ([#{{- .Issue -}}](https://github.com/hashicorp/terraform-provider-aws/issues/{{- .Issue -}})) +{{- else if eq "new-action" .Type -}} +* **New Action:** `{{.Body}}` ([#{{- .Issue -}}](https://github.com/hashicorp/terraform-provider-aws/issues/{{- .Issue -}})) {{- else if eq "new-guide" .Type -}} * **New Guide:** `{{.Body}}` ([#{{- .Issue -}}](https://github.com/hashicorp/terraform-provider-aws/issues/{{- .Issue -}})) {{- else -}} diff --git a/infrastructure/repository/labels-workflow.tf b/infrastructure/repository/labels-workflow.tf index 4deb608b194f..8620a49b8e07 100644 --- a/infrastructure/repository/labels-workflow.tf +++ b/infrastructure/repository/labels-workflow.tf @@ -109,6 +109,10 @@ variable "workflow_labels" { color = "dc477d", # color:consul description = "Waiting for first response or review from a maintainer." }, + "new-action" = { + color = "ac72f0", # color:terraform (link on black) + description = "Introduces a new action." + }, "new-data-source" = { color = "ac72f0", # color:terraform (link on black) description = "Introduces a new data source."