Skip to content

Commit

Permalink
Merge pull request #541 from spacelift-io/stack-branch-doc-fix
Browse files Browse the repository at this point in the history
Remove the reference to GitHub in the stack branch argument documentation
  • Loading branch information
jmfontaine authored May 3, 2024
2 parents 41bb03b + c8751f9 commit 85933af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion spacelift/resource_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit 85933af

Please sign in to comment.