0
0
mirror of https://github.com/thegeeklab/wp-plugin-go.git synced 2024-11-22 00:20:38 +00:00

fix: use int for commit pull request (#16)

This commit is contained in:
Robert Kaussow 2023-08-17 12:14:16 +02:00 committed by GitHub
parent 19652bf3ba
commit 893f41d45b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ type (
SHA string SHA string
Ref string Ref string
Refspec string Refspec string
PullRequest string PullRequest int
SourceBranch string SourceBranch string
TargetBranch string TargetBranch string
Branch string Branch string
@ -68,7 +68,7 @@ func currFlags(category string) []cli.Flag {
EnvVars: []string{"CI_COMMIT_REFSPEC"}, EnvVars: []string{"CI_COMMIT_REFSPEC"},
Category: category, Category: category,
}, },
&cli.StringFlag{ &cli.IntFlag{
Name: "commit.pull-request", Name: "commit.pull-request",
Usage: "commit pull request", Usage: "commit pull request",
EnvVars: []string{"CI_COMMIT_PULL_REQUEST"}, EnvVars: []string{"CI_COMMIT_PULL_REQUEST"},
@ -131,7 +131,7 @@ func currFromContext(c *cli.Context) Commit {
SHA: c.String("commit.sha"), SHA: c.String("commit.sha"),
Ref: c.String("commit.ref"), Ref: c.String("commit.ref"),
Refspec: c.String("commit.refspec"), Refspec: c.String("commit.refspec"),
PullRequest: c.String("commit.pull-request"), PullRequest: c.Int("commit.pull-request"),
SourceBranch: c.String("commit.source-branch"), SourceBranch: c.String("commit.source-branch"),
TargetBranch: c.String("commit.target-branch"), TargetBranch: c.String("commit.target-branch"),
Branch: c.String("commit.branch"), Branch: c.String("commit.branch"),