feat: support GitHub Action.
This commit is contained in:
parent
3936acbd84
commit
2ccf302b69
8
main.go
8
main.go
@ -110,7 +110,12 @@ func main() {
|
|||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "commit.sha",
|
Name: "commit.sha",
|
||||||
Usage: "git commit sha",
|
Usage: "git commit sha",
|
||||||
EnvVar: "DRONE_COMMIT_SHA",
|
EnvVar: "DRONE_COMMIT_SHA,GITHUB_SHA",
|
||||||
|
},
|
||||||
|
cli.StringFlag{
|
||||||
|
Name: "commit.ref",
|
||||||
|
Usage: "git commit ref",
|
||||||
|
EnvVar: "DRONE_COMMIT_REF,GITHUB_REF",
|
||||||
},
|
},
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "commit.branch",
|
Name: "commit.branch",
|
||||||
@ -210,6 +215,7 @@ func run(c *cli.Context) error {
|
|||||||
},
|
},
|
||||||
Commit: Commit{
|
Commit: Commit{
|
||||||
Sha: c.String("commit.sha"),
|
Sha: c.String("commit.sha"),
|
||||||
|
Ref: c.String("commit.ref"),
|
||||||
Branch: c.String("commit.branch"),
|
Branch: c.String("commit.branch"),
|
||||||
Link: c.String("commit.link"),
|
Link: c.String("commit.link"),
|
||||||
Author: c.String("commit.author"),
|
Author: c.String("commit.author"),
|
||||||
|
Loading…
Reference in New Issue
Block a user