-
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
feat: github app #360
base: main
Are you sure you want to change the base?
feat: github app #360
Conversation
library/repo.go
Outdated
|
||
r.InstallID = &v | ||
} | ||
|
||
// String implements the Stringer interface for the Repo type. | ||
// | ||
//nolint:dupl // ignore duplicate with test func |
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.
🚫 [golangci] reported by reviewdog 🐶
directive //nolint:dupl // ignore duplicate with test func
is unused for linter "dupl" (nolintlint)
@@ -70,6 +70,7 @@ type Repo struct { | |||
PipelineType sql.NullString `sql:"pipeline_type"` | |||
PreviousName sql.NullString `sql:"previous_name"` | |||
ApproveBuild sql.NullString `sql:"approve_build"` | |||
InstallID sql.NullInt64 `sql:"install_id"` |
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.
Maybe GithubInstallID
? Or SCMMetadata
with a JSON field?
No description provided.