-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Notify commit owner via slack message #37803
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
This stack of pull requests is managed by Graphite. Learn more about stacking. |
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.
Minor comments, don't we need to bump the orchestrator version in pyproject.toml
?
user_identifier=user_identifier, | ||
commit_sha=commit_sha, |
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 type hints on the log
method are not accurate, they should be str | None
instead of str
for these two parameters.
""" | ||
Generate the registry entry files from the given metadata file, and persist it to GCS. | ||
""" | ||
if not metadata_entry: | ||
# if the metadata entry is invalid, return an empty dict | ||
return Output(metadata={"empty_metadata": True}, value=None) | ||
|
||
user_identifier = safe_get_slack_user_identifier(airbyte_slack_users, metadata_entry.metadata_definition) |
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'm not 💯 sure user_identifier
makes it way to the registry, might be just used to log, feel free to ignore my comment then)
We'll publish contributors email (both airbyters and external contributors) to our registry, shall we be concerned about exposing these? Git info are public but not sure that as a contributor I'd expect my email to be publicaly available in our online registry.
7e76b6c
to
219e7b5
Compare
2b03faf
to
d5ce17d
Compare
219e7b5
to
5f9a6b9
Compare
d5ce17d
to
78f8640
Compare
78f8640
to
9c54656
Compare
What
Updates our slack lifecycle notifications to mention the author of the metadata change on slack
Spun out of #32715 as a stack