-
|
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 Packagessection 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.ymlconfiguration thatgit clones the dependencies andmvn installs them in abefore_indexscript defined in anlgtm.ymlfile. That waymvnshould be able to find them without having to…