-
Notifications
You must be signed in to change notification settings - Fork 371
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: hook pre/post merge include merge source #8703
Conversation
The new field `merge_source` include source branch/tag/commit as requested. The current event include `source_ref` which resolved to the specific commit the merge operation will merge.
♻️ PR Preview 6c09f27 has been successfully destroyed since this PR has been closed. 🤖 By surge-preview |
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.
Thanks minor stuff about the doc and question about lua
docs/howto/hooks/webhooks.md
Outdated
| tag_id[^3] | The ID of the created/deleted tag | string | | ||
| merge_source[^5] | The source branch/tag/ref on merge operation | string | |
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.
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.
Fixed this issue in the current docs - seems you can't compose
@@ -37,6 +38,7 @@ func marshalEventInformation(actionName, hookID string, record graveler.HookReco | |||
CommitMessage: record.Commit.Message, | |||
Committer: record.Commit.Committer, | |||
CommitMetadata: record.Commit.Metadata, | |||
MergeSource: record.MergeSource.String(), |
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.
Is this left out from lua type on purpose? (https://github.com/treeverse/lakeFS/blob/master/pkg/actions/lua.go#L47)
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.
No, It is a bug - will fix it
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.
Thanks LGTM!
Just a couple of comments
@@ -20,6 +20,7 @@ type EventInfo struct { | |||
CommitMessage string `json:"commit_message,omitempty"` | |||
Committer string `json:"committer,omitempty"` | |||
CommitMetadata map[string]string `json:"commit_metadata,omitempty"` | |||
MergeSource string `json:"merge_source,omitempty"` |
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.
I was having trouble understanding the difference between MergeSource and SourceRef. I think documenting these fields will greatly improve readability
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.
Documented in the HookRecord struct and part of the invoke
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.
I think it's better to document it on the struct itself rather than where it is being used
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.
HookRecord is the structure that is used when we trigger hooks. The event is used for marshal the data for webhook and airflow.
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.
Sorry I thought you meant on the usage
pkg/graveler/graveler.go
Outdated
RunID: postRunID, | ||
Repository: repository, | ||
BranchID: destination, | ||
MergeSource: source, |
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.
nit: align field location in both pre and post hooks
CommitID: "123456789", | ||
PreRunID: "3498032432", | ||
TagID: "tag1", | ||
MergeSource: "merge-source", |
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.
Do we have any place in the test where we verify the field? If not - what is the point of adding it?
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.
the test uses a golden file which I updated
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.
LGTM Thanks! That's a great addition :)
The new field
merge_source
include source branch/tag/commit as requested.The current event include
source_ref
which resolved to the specific commit the merge operation will merge.Close #8707