forked from totmicro/atlantis-yaml-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- decouple workflow with discovery mode (bad logic used in 0.0.2) - create a new flag for discovery-mode which replaces the workflow mode - read github credentials from $HOME/.git-credentials - update tests - update readme - bump version to v0.0.3
- Loading branch information
1 parent
f6cd95f
commit e03aee8
Showing
20 changed files
with
142 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
examples/multi-workspace/multiple-projects/generate-with-include-filter.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
atlantis-yaml-generator -e stdout -w multi-workspace --pattern-detector workspace_vars --included-projects "staging$" | ||
atlantis-yaml-generator -e stdout -d multi-workspace -w workflow1 --pattern-detector workspace_vars --included-projects "staging$" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
atlantis-yaml-generator -e stdout -w multi-workspace --pattern-detector workspace_vars | ||
atlantis-yaml-generator -e stdout -d multi-workspace -w workflow1 --pattern-detector workspace_vars |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
atlantis-yaml-generator -e stdout -w multi-workspace --pattern-detector workspace_vars | ||
atlantis-yaml-generator -e stdout -d multi-workspace -w workflow2 --pattern-detector workspace_vars |
2 changes: 1 addition & 1 deletion
2
examples/single-workspace/multiple-projects-environments/generate.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
atlantis-yaml-generator -e stdout -w single-workspace --pattern-detector main.tf | ||
atlantis-yaml-generator -e stdout -d single-workspace -w workflow1 --pattern-detector main.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
atlantis-yaml-generator -e stdout -w single-workspace --pattern-detector main.tf | ||
atlantis-yaml-generator -e stdout -d single-workspace -w workflow1 --pattern-detector main.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
atlantis-yaml-generator -e stdout -w single-workspace --pattern-detector main.tf | ||
atlantis-yaml-generator -e stdout -d single-workspace -w workflow1 --pattern-detector main.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
module github.com/totmicro/atlantis-yaml-generator | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require github.com/google/go-github v17.0.0+incompatible | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/onsi/gomega v1.27.10 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) | ||
|
||
require ( | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/tcnksm/go-gitconfig v0.1.2 | ||
golang.org/x/oauth2 v0.11.0 | ||
golang.org/x/oauth2 v0.15.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,5 @@ import ( | |
) | ||
|
||
func main() { | ||
|
||
cmd.Init() | ||
} | ||
|
||
// TODO | ||
// - [ ] Add tests |
Oops, something went wrong.