From 217acff57fa9144ccfea81d66b7009ac534ef4b5 Mon Sep 17 00:00:00 2001 From: David Boike Date: Mon, 14 Jul 2025 12:25:53 -0500 Subject: [PATCH 1/2] Enable Renovate and remove Dependabot --- .github/dependabot.yml | 36 ----------------------- .github/workflows/update-dependencies.yml | 24 +++++++++++++++ .reposync.yml | 3 +- 3 files changed, 26 insertions(+), 37 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/update-dependencies.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index bc1175f8eb..0000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,36 +0,0 @@ -version: 2 -registries: - particular-packages: - type: nuget-feed - url: https://f.feedz.io/particular-software/packages/nuget/index.json -updates: -- package-ecosystem: nuget - directory: "/src" - registries: "*" - schedule: - interval: daily - open-pull-requests-limit: 1000 - groups: - AWSSDK: - patterns: - - "AWSSDK.*" - NServiceBusCore: - patterns: - - "NServiceBus" - - "NServiceBus.AcceptanceTesting" - - "NServiceBus.AcceptanceTests.Sources" - - "NServiceBus.PersistenceTests.Sources" - - "NServiceBus.TransportTests.Sources" - ignore: - # Particular.Analyzers updates are distributed via RepoStandards - - dependency-name: "Particular.Analyzers" - # Changing these 3 dependencies affects the .NET SDK and Visual Studio versions we support - # These types of updates should be more intentional than an automated update - - dependency-name: "Microsoft.Build.Utilities.Core" - - dependency-name: "Microsoft.CodeAnalysis.CSharp" - - dependency-name: "Microsoft.CodeAnalysis.CSharp.Workspaces" -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 1000 diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml new file mode 100644 index 0000000000..8cf2585533 --- /dev/null +++ b/.github/workflows/update-dependencies.yml @@ -0,0 +1,24 @@ +name: Update Dependencies +on: + schedule: + # At 14 minutes past the hour, every 6 hours, starting at 3AM UTC + - cron: '14 3/6 * * *' + workflow_dispatch: + inputs: + dryRun: + type: boolean + required: false + default: false + description: Dry run (don't create PRs) + debugMode: + type: boolean + required: false + default: false + description: Run Renovate with debug logging +jobs: + renovate: + uses: particular/shared-workflows/.github/workflows/dependency-updates.yml@main + with: + dryRun: ${{ inputs.dryRun || false }} + debugMode: ${{ inputs.debugMode || false }} + secrets: inherit \ No newline at end of file diff --git a/.reposync.yml b/.reposync.yml index 8b13789179..2bfb55d939 100644 --- a/.reposync.yml +++ b/.reposync.yml @@ -1 +1,2 @@ - +exclusions: +- .github/dependabot.yml From ae7a07a9a9a6f43efb32adb80cd2f009ad53a43a Mon Sep 17 00:00:00 2001 From: Tamara Rivera Date: Mon, 14 Jul 2025 13:38:58 -0700 Subject: [PATCH 2/2] Update .reposync.yml --- .reposync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.reposync.yml b/.reposync.yml index 2bfb55d939..f0aeba46e9 100644 --- a/.reposync.yml +++ b/.reposync.yml @@ -1,2 +1,3 @@ exclusions: + - .github/dependabot.yml