diff --git a/extension/task/utils/parseConfigFile.ts b/extension/task/utils/parseConfigFile.ts index 032e3e65..5d117f00 100644 --- a/extension/task/utils/parseConfigFile.ts +++ b/extension/task/utils/parseConfigFile.ts @@ -25,6 +25,9 @@ import axios from "axios"; */ async function parseConfigFile(variables: ISharedVariables): Promise { const possibleFilePaths = [ + ".azuredevops/dependabot.yml", + ".azuredevops/dependabot.yaml", + "/.github/dependabot.yaml", "/.github/dependabot.yml", ]; diff --git a/server/Tingle.Dependabot/Workflow/AzureDevOpsProvider.cs b/server/Tingle.Dependabot/Workflow/AzureDevOpsProvider.cs index c4d71c49..08ec2663 100644 --- a/server/Tingle.Dependabot/Workflow/AzureDevOpsProvider.cs +++ b/server/Tingle.Dependabot/Workflow/AzureDevOpsProvider.cs @@ -10,9 +10,8 @@ public class AzureDevOpsProvider { // Possible/allowed paths for the configuration files in a repository. private static readonly IReadOnlyList ConfigurationFilePaths = new[] { - // TODO: restore checks in .azuredevops folder once either the code can check that folder or we are passing ignore conditions via update_jobs API - //".azuredevops/dependabot.yml", - //".azuredevops/dependabot.yaml", + ".azuredevops/dependabot.yml", + ".azuredevops/dependabot.yaml", ".github/dependabot.yml", ".github/dependabot.yaml",