Apply suggestions from code review
Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
This commit is contained in:
parent
9f6217d159
commit
9caf46cc61
2 changed files with 2 additions and 2 deletions
2
main.go
2
main.go
|
@ -51,7 +51,7 @@ type config struct {
|
||||||
|
|
||||||
// Mappings from app name (as submitted in the API) to github repo for issue reporting.
|
// Mappings from app name (as submitted in the API) to github repo for issue reporting.
|
||||||
GithubProjectMappings map[string]string `yaml:"github_project_mappings"`
|
GithubProjectMappings map[string]string `yaml:"github_project_mappings"`
|
||||||
// Mappings from app name (as submitted in the API) to github repo as to which the issues pertain.
|
// Mappings from app name (as submitted in the API) to github repo to which the issues pertain.
|
||||||
// Not needed if the issues are reported to the main repo as github will complete the ambiguous references correctly.
|
// Not needed if the issues are reported to the main repo as github will complete the ambiguous references correctly.
|
||||||
AutocompleteProjectMappings map[string]string `yaml:"autocomplete_project_mappings"`
|
AutocompleteProjectMappings map[string]string `yaml:"autocomplete_project_mappings"`
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ github_token: secrettoken
|
||||||
github_project_mappings:
|
github_project_mappings:
|
||||||
my-app: octocat/HelloWorld
|
my-app: octocat/HelloWorld
|
||||||
|
|
||||||
# mappings from app name (as submitted in the API) to github repo as to which the issues pertain.
|
# mappings from app name (as submitted in the API) to github repo to which the issues pertain.
|
||||||
# not needed if the issues are reported to the main repo as github will complete the ambiguous references correctly.
|
# not needed if the issues are reported to the main repo as github will complete the ambiguous references correctly.
|
||||||
autocomplete_project_mappings:
|
autocomplete_project_mappings:
|
||||||
my-app: octocat/HelloWorld_src
|
my-app: octocat/HelloWorld_src
|
||||||
|
|
Reference in a new issue