-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1697fd2
commit bb71538
Showing
7 changed files
with
54 additions
and
21 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
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 |
---|---|---|
|
@@ -231,6 +231,7 @@ You can run the goliac server as a service or a docker container. It needs sever | |
| GOLIAC_GITHUB_APP_PRIVATE_KEY_FILE | | (mandatory) path to private key | | ||
| GOLIAC_GITHUB_TEAM_APP_ID | | (optional) dedicated app id of Goliac GitHub App for goliac teams repo (see security.md) | | ||
| GOLIAC_GITHUB_TEAM_APP_PRIVATE_KEY_FILE | | (optional) dedicated path to private key for goliac teams repo (see security.md) | | ||
| GOLIAC_GITHUB_PERSONAL_ACCESS_TOKEN | | (optional) personal access token to use instead of the GitHub App | | ||
| GOLIAC_EMAIL | [email protected] | author name used by Goliac to commit (Codeowners) | | ||
| GOLIAC_GITHUB_CONCURRENT_THREADS | 5 | You can increase, like '10' | | ||
| GOLIAC_GITHUB_CACHE_TTL | 86400 | GitHub remote cache seconds retention | | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ var Config = struct { | |
GithubAppPrivateKeyFile string `env:"GOLIAC_GITHUB_APP_PRIVATE_KEY_FILE" envDefault:"github-app-private-key.pem"` | ||
GithubTeamAppID int64 `env:"GOLIAC_GITHUB_TEAM_APP_ID"` | ||
GithubTeamAppPrivateKeyFile string `env:"GOLIAC_GITHUB_TEAM_APP_PRIVATE_KEY_FILE"` | ||
GithubPersonalAccessToken string `env:"GOLIAC_GITHUB_PERSONAL_ACCESS_TOKEN"` | ||
GoliacEmail string `env:"GOLIAC_EMAIL" envDefault:"[email protected]"` | ||
GoliacTeamOwnerSuffix string `env:"GOLIAC_TEAM_OWNER_SUFFIX" envDefault:"-goliac-owners"` | ||
|
||
|
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
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