Skip to content

Commit e08d0a6

Browse files
author
Ryan Wholey
authored
Rename action to focus on outupts instead of remote state (#9)
1 parent aab25b1 commit e08d0a6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/settings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
_extends: .github
22

33
repository:
4-
name: terraform-cloud-remote-state-action
4+
name: terraform-cloud-outputs-action
55
description: GitHub Action to fetch outputs from a Terraform Cloud workspace
66
topics: github-actions, terraform, terraform-cloud
77
private: false
@@ -14,4 +14,4 @@ branches:
1414
contexts:
1515
- lint
1616
- test
17-
- actionlint
17+
- e2e

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ COPY . ./
55

66
RUN go build
77

8-
ENTRYPOINT ["/src/terraform-cloud-remote-state-action"]
8+
ENTRYPOINT ["/src/terraform-cloud-outputs-action"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# terraform-cloud-remote-state-action
1+
# terraform-cloud-outputs-action
22

33
GitHub Action to fetch outputs from a Terraform Cloud workspace
44

@@ -13,7 +13,7 @@ output "foo" {
1313
```
1414

1515
```yml
16-
- uses: takescoop/terraform-cloud-remote-state[email protected]
16+
- uses: takescoop/terraform-cloud-outputs[email protected]
1717
id: action
1818
with:
1919
workspace: name

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/takescoop/terraform-cloud-remote-state-action
1+
module github.com/takescoop/terraform-cloud-outputs-action
22

33
go 1.17
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/sethvargo/go-githubactions"
5-
"github.com/takescoop/terraform-cloud-remote-state-action/internal/action"
5+
"github.com/takescoop/terraform-cloud-outputs-action/internal/action"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)