diff --git a/.dependabot/config.yml b/.dependabot/config.yml deleted file mode 100644 index ea0745fd494..00000000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,62 +0,0 @@ -version: 1 - -# update_schedule: live is only supported on javascript, ruby:bundler, python, php:composer, dotnet:nuget, rust:cargo, elixir:hex - -update_configs: - - package_manager: "dotnet:nuget" - directory: "/" - update_schedule: "live" - default_labels: - - "CL-BuildPackaging" - ignored_updates: - - match: - dependency_name: "System.*" - - match: - dependency_name: "Microsoft.Win32.Registry.AccessControl" - - match: - dependency_name: "Microsoft.Windows.Compatibility" - - - package_manager: "dotnet:nuget" - directory: "/tools/packaging/projects/reference/Microsoft.PowerShell.Commands.Utility" - update_schedule: "live" - default_labels: - - "CL-BuildPackaging" - ignored_updates: - - match: - dependency_name: "System.*" - - match: - dependency_name: "Microsoft.Win32.Registry.AccessControl" - - match: - dependency_name: "Microsoft.Windows.Compatibility" - - - package_manager: "dotnet:nuget" - directory: "/tools/packaging/projects/reference/System.Management.Automation" - update_schedule: "live" - default_labels: - - "CL-BuildPackaging" - ignored_updates: - - match: - dependency_name: "System.*" - - match: - dependency_name: "Microsoft.Win32.Registry.AccessControl" - - match: - dependency_name: "Microsoft.Windows.Compatibility" - - - package_manager: "dotnet:nuget" - directory: "/test/tools/Modules" - update_schedule: "live" - default_labels: - - "CL-BuildPackaging" - ignored_updates: - - match: - dependency_name: "System.*" - - match: - dependency_name: "Microsoft.Win32.Registry.AccessControl" - - match: - dependency_name: "Microsoft.Windows.Compatibility" - - - package_manager: "dotnet:nuget" - directory: "/src/Modules" - update_schedule: "live" - default_labels: - - "CL-BuildPackaging" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..bf13e4c9510 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,55 @@ +version: 2 + +# update_schedule: live is only supported on javascript, ruby:bundler, python, php:composer, dotnet:nuget, rust:cargo, elixir:hex + +updates: + - package-ecosystem: "dotnet:nuget" + directory: "/" + schedule: + interval: "live" + labels: + - "CL-BuildPackaging" + ignore: + - dependency-name: "System.*" + - dependency-name: "Microsoft.Win32.Registry.AccessControl" + - dependency-name: "Microsoft.Windows.Compatibility" + + - package-ecosystem: "dotnet:nuget" + directory: "/tools/packaging/projects/reference/Microsoft.PowerShell.Commands.Utility" + schedule: + interval: "live" + labels: + - "CL-BuildPackaging" + ignored_updates: + - dependency-name: "System.*" + - dependency-name: "Microsoft.Win32.Registry.AccessControl" + - dependency-name: "Microsoft.Windows.Compatibility" + + - package-ecosystem: "dotnet:nuget" + directory: "/tools/packaging/projects/reference/System.Management.Automation" + schedule: + interval: "live" + labels: + - "CL-BuildPackaging" + ignored_updates: + - dependency-name: "System.*" + - dependency-name: "Microsoft.Win32.Registry.AccessControl" + - dependency-name: "Microsoft.Windows.Compatibility" + + - package-ecosystem: "dotnet:nuget" + directory: "/test/tools/Modules" + schedule: + interval: "live" + labels: + - "CL-BuildPackaging" + ignored_updates: + - dependency-name: "System.*" + - dependency-name: "Microsoft.Win32.Registry.AccessControl" + - dependency-name: "Microsoft.Windows.Compatibility" + + - package_manager: "dotnet:nuget" + directory: "/src/Modules" + schedule: + interval: "live" + labels: + - "CL-BuildPackaging"