Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/scripts/changelog.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 2 additions & 0 deletions .ci/scripts/release-note.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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 -}}
Expand Down
4 changes: 4 additions & 0 deletions infrastructure/repository/labels-workflow.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
Loading