-
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
metadata-service[orchestrator]: set SBOM url in registry #44381
metadata-service[orchestrator]: set SBOM url in registry #44381
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @alafanechere and the rest of your teammates on |
e28e7f6
to
56f5445
Compare
8eb8c56
to
d3da46d
Compare
56f5445
to
56d8030
Compare
bc94f7a
to
a8a8d8a
Compare
return metadata_dict | ||
response = requests.head(sbom_url) | ||
if response.ok: | ||
metadata_dict = set_(metadata_dict, "data.generated.sbomUrl", sbom_url) |
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.
For my education: do we put a lot of things in generated
metadata key?
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.
56d8030
to
de4e12f
Compare
a8a8d8a
to
c38f34e
Compare
c38f34e
to
2f872fa
Compare
What
Closes https://github.com/airbytehq/airbyte-internal-issues/issues/8991
We want to populate the
generated
field of connector a registry entry with an URL to its SBOM.How
HEAD
request.generated
fields with thesbomUrl
.