mirror of
https://github.com/thegeeklab/wp-github-comment.git
synced 2024-11-24 13:00:41 +00:00
29 lines
597 B
Go
29 lines
597 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/thegeeklab/wp-github-comment/plugin"
|
|
|
|
wp "github.com/thegeeklab/wp-plugin-go/plugin"
|
|
)
|
|
|
|
//nolint:gochecknoglobals
|
|
var (
|
|
BuildVersion = "devel"
|
|
BuildDate = "00000000"
|
|
)
|
|
|
|
func main() {
|
|
settings := &plugin.Settings{}
|
|
options := wp.Options{
|
|
Name: "wp-github-comment",
|
|
Description: "Add comments to GitHub Issues and Pull Requests",
|
|
Version: BuildVersion,
|
|
VersionMetadata: fmt.Sprintf("date=%s", BuildDate),
|
|
Flags: settingsFlags(settings, wp.FlagsPluginCategory),
|
|
}
|
|
|
|
plugin.New(options, settings).Run()
|
|
}
|