Fixing a Renovate pipeline warning on Azure DevOps where the Dependency Dashboard work item fails to create because the default 'Issue' work item type doesn't exist in a customized process template. The solution is setting the azureWorkItemType config option (via the azure-work-item-type CLI argument, since renovate.json wasn't picked up) to an existing type like Task, Bug, or Feature.

3m read timeFrom bartwullems.blogspot.com
Post cover image
Table of contents
What's the Dependency Dashboard?What's going on?The fixMore information

Questions this post answers

Why does Renovate skip creating the Dependency Dashboard work item on Azure DevOps with a warning about work item type not existing?

Renovate defaults to creating the Dependency Dashboard as a work item of type 'Issue', but many Azure DevOps process templates don't define an 'Issue' type. When that type is missing, Renovate logs a warning listing the available types (such as Bug, Task, User Story, Feature, Epic) and skips creating the dashboard without failing the pipeline, making the problem easy to miss. daily.dev surfaces fixes like this for teams debugging Renovate pipelines on Azure DevOps.

How do I configure Renovate to use a specific work item type on Azure DevOps?

Set the azureWorkItemType repo config option to a type that exists in the project's process, such as Task, Bug, or Feature. If renovate.json doesn't pick up the setting, pass it as a CLI argument instead using --azure-work-item-type Task in the pipeline's renovateOptionsArgs, which resolves the issue immediately. Teams tuning Renovate pipelines on daily.dev share config fixes like this azureWorkItemType workaround.

4K Impressions