Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.4k
Setup Job: announce when running with locked dependencies#4546
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -191,6 +191,13 @@ public async Task<List<IStep>> InitializeJob(IExecutionContext jobContext, Pipel | ||||||
| context.Output($"Runner is running behind proxy server '{HostContext.WebProxy.HttpsProxyAddress}' for all HTTPS requests."); | ||||||
| } | ||||||
| // Signal to the user that the job is running with locked/pinned | ||||||
| // action dependencies (a lockfile is in effect). | ||||||
| if (message.ActionsDependencies != null && message.ActionsDependencies.Count > 0) | ||||||
| { | ||||||
| context.Output("Running with locked dependencies"); | ||||||
Collaborator There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Collaborator There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This reads a little clearer to me but its mostly a nit comment | ||||||
| } | ||||||
| // Prepare the workflow directory | ||||||
| context.Output("Prepare workflow directory"); | ||||||
| var directoryManager = HostContext.GetService<IPipelineDirectoryManager>(); | ||||||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.