drone-github-comment/cmd/drone-github-comment/config.go

60 lines
1.8 KiB
Go
Raw Normal View History

2020-09-20 00:00:34 +02:00
package main
import (
2020-09-20 22:04:09 +02:00
"github.com/thegeeklab/drone-github-comment/plugin"
"github.com/urfave/cli/v2"
2020-09-20 00:00:34 +02:00
)
// settingsFlags has the cli.Flags for the plugin.Settings.
func settingsFlags(settings *plugin.Settings, category string) []cli.Flag {
2020-09-20 00:00:34 +02:00
return []cli.Flag{
&cli.StringFlag{
Name: "api-key",
EnvVars: []string{"PLUGIN_API_KEY", "GITHUB_COMMENT_API_KEY"},
2022-05-29 22:06:59 +02:00
Usage: "personal access token access github api",
2020-09-20 00:00:34 +02:00
Destination: &settings.APIKey,
Category: category,
Required: true,
2020-09-20 00:00:34 +02:00
},
&cli.StringFlag{
Name: "base-url",
EnvVars: []string{"PLUGIN_BASE_URL", "GITHUB_COMMENT_BASE_URL"},
2022-05-29 22:06:59 +02:00
Usage: "api url",
Value: "https://api.github.com/",
2020-09-20 00:00:34 +02:00
Destination: &settings.BaseURL,
Category: category,
2020-09-20 00:00:34 +02:00
},
&cli.StringFlag{
Name: "key",
EnvVars: []string{"PLUGIN_KEY", "GITHUB_COMMENT_KEY"},
2022-05-29 22:06:59 +02:00
Usage: "unique identifier to assign to comment",
2020-09-20 00:00:34 +02:00
Destination: &settings.Key,
Category: category,
2020-09-20 00:00:34 +02:00
},
&cli.StringFlag{
Name: "message",
EnvVars: []string{"PLUGIN_MESSAGE", "GITHUB_COMMENT_MESSAGE"},
2022-05-29 22:06:59 +02:00
Usage: "file or string that holds the comment text",
2020-09-20 00:00:34 +02:00
Destination: &settings.Message,
Category: category,
Required: true,
2020-09-20 00:00:34 +02:00
},
&cli.BoolFlag{
Name: "update",
EnvVars: []string{"PLUGIN_UPDATE", "GITHUB_COMMENT_UPDATE"},
2022-05-29 22:06:59 +02:00
Usage: "update existing comment that matches the key",
Value: false,
2020-09-20 00:00:34 +02:00
Destination: &settings.Update,
Category: category,
2020-09-20 00:00:34 +02:00
},
&cli.BoolFlag{
Name: "skip-missing",
EnvVars: []string{"PLUGIN_SKIP_MISSING", "GITHUB_COMMENT_SKIP_MISSING"},
2022-05-29 22:06:59 +02:00
Usage: "skip creation of comment if message file does not exist",
Value: false,
Destination: &settings.SkipMissing,
Category: category,
},
2020-09-20 00:00:34 +02:00
}
}