DRAFT: Add enterprise + multi-org collection support#6
Draft
d3vzer0 wants to merge 68 commits into
Draft
Conversation
…in-resource/transformer parsing of users
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 65 out of 66 changed files in this pull request and generated 9 comments.
Comments suppressed due to low confidence (2)
src/openhound_github/models/workflow_job.py:246
self.org_node_idisstr | None, but this code unconditionally calls.upper()when building org-variable property matchers. If lookup returnsNone, this will raise at runtime. Guard onself.org_node_idbefore calling.upper()(and skip emitting the edge if it’s missing).
src/openhound_github/models/workflow_step.py:237self.org_node_idisstr | None, but this code unconditionally calls.upper()when building org-variable property matchers. If lookup returnsNone, this will raise. Guard onself.org_node_idbefore calling.upper()(and skip emitting the org-variable edge when it’s missing).
Comment on lines
+199
to
+203
| if installation_id is None: | ||
| org_login = org_name or self.org_name | ||
| if org_login: | ||
| installation_id = self.installation_id_for_org(org_login) | ||
| else: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add GitHub Enterprise ingestion with multi-organization support. Additionally, adds new nodes/edges for Github Workflows.
Changes: