From c8751f998d3151b596d8e5075b62d136649cdd2a Mon Sep 17 00:00:00 2001 From: Jean-Marc Fontaine Date: Sat, 27 Apr 2024 16:14:25 -0400 Subject: [PATCH] Remove the reference to GitHub in the stack branch argument documentation --- docs/resources/stack.md | 2 +- spacelift/resource_stack.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/stack.md b/docs/resources/stack.md index 1ca95b4e..bb5bf5cd 100644 --- a/docs/resources/stack.md +++ b/docs/resources/stack.md @@ -204,7 +204,7 @@ resource "spacelift_stack" "terragrunt-stack" { ### Required -- `branch` (String) GitHub branch to apply changes to +- `branch` (String) Git branch to apply changes to - `name` (String) Name of the stack - should be unique in one account - `repository` (String) Name of the repository, without the owner part diff --git a/spacelift/resource_stack.go b/spacelift/resource_stack.go index 1f1cedde..8e809b87 100644 --- a/spacelift/resource_stack.go +++ b/spacelift/resource_stack.go @@ -208,7 +208,7 @@ func resourceStack() *schema.Resource { }, "branch": { Type: schema.TypeString, - Description: "GitHub branch to apply changes to", + Description: "Git branch to apply changes to", Required: true, ValidateDiagFunc: validations.DisallowEmptyString, },