I have two private repositories in the same organization, say repository A and B, both of which are python packages. I have a "GitHub Actions workflow" to test repository B for each PR. However, repository B depends on repository A, so I would need to install it.
I tried following this GitHub document, however, it specifically states
GITHUB_TOKEN cannot install packages from any private repository besides the repository where the action runs.
How do I go about implementing this installation?