From 2fddc8b46d80200c33f668fa00b844f4239dea68 Mon Sep 17 00:00:00 2001 From: Particular Bot Date: Thu, 17 Jul 2025 15:55:37 -0500 Subject: [PATCH 1/2] Delete Dependabot config --- .github/dependabot.yml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index ab53bde..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: 2 -updates: -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 1000 From ab81657da4cd34f3b12223537a0ef7b42db001b9 Mon Sep 17 00:00:00 2001 From: Particular Bot Date: Thu, 17 Jul 2025 15:55:38 -0500 Subject: [PATCH 2/2] Add Renovate workflow --- .github/workflows/update-dependencies.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/update-dependencies.yml diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml new file mode 100644 index 0000000..0702b6c --- /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