-
Hello, I am trying to build my app on lgtm however, its failing as it cant access the packages from one of my other repos. With github actions i can add an access token but i cant seem to find away for lgtm to access it. Has anyone solved this issue and i am just missing the solotion?
Thanks for any help/advice Gary |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The If you only have one (or very few) dependencies that are (small) open-source projects, then it is probably best to create an |
Beta Was this translation helpful? Give feedback.
The
Authenticating to GitHub Packages
section in the documentation explains how to configure authentication with a personal access token (PAT). Unfortunately, LGTM does not provide a way to securely include credentials such as a PAT in its configuration files. Including plain text credentials in configuration files would be risky, and I'd recommend against taking that approach.If you only have one (or very few) dependencies that are (small) open-source projects, then it is probably best to create an
.lgtm.yml
configuration thatgit clone
s the dependencies andmvn install
s them in abefore_index
script defined in anlgtm.yml
file. That waymvn
should be able to find them without having to…