Skip to content

Commit

Permalink
Rename flag to 'ignored-repositories' (#16)
Browse files Browse the repository at this point in the history
* Rename flag to 'blacklist-repositories'

* change flag name to ignored-repositories
  • Loading branch information
JacobValdemar authored Aug 13, 2020
1 parent 53691e6 commit 1b51a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func main() {
pflag.StringVar(&githubappConfig.App.PrivateKey, "github-private-key", "", "github app private key content")

messageTemplate := pflag.String("message-template", "'{{.Branch}}' will auto-release to: {{range .AutoReleaseEnvironments}}\n {{.}}{{end}}", "Template string used when commenting on pull requests on Github. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].")
repoFilter := pflag.StringSlice("filter-repository", []string{}, "Slice with names of repositories which the bot should not respond to.")
repoFilter := pflag.StringSlice("ignored-repositories", []string{}, "Slice with names of repositories which the bot should not respond to.")

pflag.Parse()

Expand Down

0 comments on commit 1b51a91

Please sign in to comment.