docs: add comments to default configuration
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M internal/config/repository.go → internal/config/repository.go
@@ -13,10 +13,10 @@ GitHub ) type Repository struct { - Type string `default:"github"` + Type string `toml:"" default:"github" comment:"Currently only 'github' is supported."` Owner string Repo string - Revision string + Revision string `toml:"-"` } func (f RepoType) String() string {