-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Github committer reviewer evidence on buildinfo #46
base: main
Are you sure you want to change the base?
Conversation
lesnerd
commented
Feb 16, 2025
- All tests passed. If this feature is not already covered by the tests, I added new tests.
- All static analysis checks passed.
- This pull request is on the dev branch.
- I used gofmt for formatting the code before submitting the pull request.
98c6b17
to
373315d
Compare
go.mod
Outdated
@@ -2,10 +2,13 @@ module github.com/jfrog/jfrog-cli-artifactory | |||
|
|||
go 1.23.4 | |||
|
|||
toolchain go1.23.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To my knowledge - why does it need to be added?
evidence/create_github.go
Outdated
|
||
func getFlagType(typeFlag string) FlagType { | ||
var flagType FlagType | ||
if typeFlag == "gh-commiter" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please consider adding const for this value
} | ||
|
||
func (c *createGitHubEvidence) CommandName() string { | ||
return "create-github-evidence" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please consider adding const for this value
43a273e
to
f8a53ad
Compare