-
Notifications
You must be signed in to change notification settings - Fork 1k
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
pass job file path to analyze command #11089
Conversation
b0715bb
to
4f543fd
Compare
4f543fd
to
626a388
Compare
@brettfo This seems to break the ability to use Would you be able to advise if the team still plans to support a usecase for |
Going forward we're trying to only use dependabot through the CLI which uses the proxy image to handle authentication. The reason is that we'd otherwise have to maintain two versions of the code that handles authentication and since the official implementation uses the CLI and proxy, that's the easiest route for us to follow. |
@brettfo I haven't looked in to CLI, is it usable outside GitHub's ecosystem? edit: Never mind, I see from the README that it is. Thanks for your response. |
@andrcuns One method to run it locally would be to use the CLI that you found with the following setup:
As an example, you might invoke it with: |
@brettfo Thanks for the example. My main problem is that I maintain what now is a fairly complex rails app that implements instrumentation around It actually looks like I could update it to use the CLI and save myself a ton of headache when trying to follow along all the changes in Anyhow, thanks for the response, at least now I know general direction |
The
discover
andupdate
NuGet tool commands both have a--job-path
argument so that the current set of experiments can be parsed.This PR adds the same behavior to the
analyze
command. We don't yet need the experiments for this command, but we will soon so this is front loading some of the work.