-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from nzin/dryrun
fix plan command, and fix caching
- Loading branch information
Showing
10 changed files
with
442 additions
and
400 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ var Config = struct { | |
|
||
GithubServer string `env:"GOLIAC_GITHUB_SERVER" envDefault:"https://api.github.com"` | ||
GithubAppOrganization string `env:"GOLIAC_GITHUB_APP_ORGANIZATION" envDefault:""` | ||
GithubAppID int `env:"GOLIAC_GITHUB_APP_ID"` | ||
GithubAppID int64 `env:"GOLIAC_GITHUB_APP_ID"` | ||
GithubAppPrivateKeyFile string `env:"GOLIAC_GITHUB_APP_PRIVATE_KEY_FILE" envDefault:"github-app-private-key.pem"` | ||
GoliacEmail string `env:"GOLIAC_EMAIL" envDefault:"[email protected]"` | ||
|
||
GithubConcurrentThreads int `env:"GOLIAC_GITHUB_CONCURRENT_THREADS" envDefault:"1"` | ||
GithubCacheTTL int `env:"GOLIAC_GITHUB_CACHE_TTL" envDefault:"86400"` | ||
GithubConcurrentThreads int64 `env:"GOLIAC_GITHUB_CONCURRENT_THREADS" envDefault:"1"` | ||
GithubCacheTTL int64 `env:"GOLIAC_GITHUB_CACHE_TTL" envDefault:"86400"` | ||
|
||
ServerApplyInterval int `env:"GOLIAC_SERVER_APPLY_INTERVAL" envDefault:"600"` | ||
ServerApplyInterval int64 `env:"GOLIAC_SERVER_APPLY_INTERVAL" envDefault:"600"` | ||
ServerGitRepository string `env:"GOLIAC_SERVER_GIT_REPOSITORY" envDefault:""` | ||
ServerGitBranch string `env:"GOLIAC_SERVER_GIT_BRANCH" envDefault:"main"` | ||
|
||
|
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
Oops, something went wrong.