Replies: 1 comment
-
Indeed, However, I don't think this will sort your issue to do with the duration of the update. If extending the pipeline duration beyond 60 min is not possible, the only other alternative is to run the server component which works by creating ContainerApp Jobs and will run in parallel. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a C# repo containing multiple projects I want to update. That means the dependabot configs for each project will be stored in the same dependabot.yaml, in the root of the repo.
Example:
.github/dependabot.yaml
Currently in my Azure pipeline, the dependabot task will update these projects serially, one at a time. But I would like to update them in parallel (especially because the pipeline will timeout after 60 min). After reading the description of the "targetUpdateIds" parameter, it seems to achieve what I want, but I wanted to confirm.
Can I simply do the following in my pipeline?
Beta Was this translation helpful? Give feedback.
All reactions