From faeda0a3fcf537d08a7e5f11b50bef1ae49c2a9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damien=20Pl=C3=A9nard?= Date: Tue, 26 May 2026 22:31:43 +0200 Subject: [PATCH 1/2] chore: add workflow_dispatch to update-json workflow --- .github/workflows/update-json.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-json.yml b/.github/workflows/update-json.yml index 5ef9677..fe0eba7 100644 --- a/.github/workflows/update-json.yml +++ b/.github/workflows/update-json.yml @@ -3,18 +3,19 @@ name: Update JSON on: pull_request: branches: [main] + workflow_dispatch: permissions: contents: write jobs: update-json: - if: github.event.pull_request.user.login == 'renovate[bot]' + if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'renovate[bot]') runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - ref: ${{ github.head_ref }} + ref: ${{ github.head_ref || github.ref_name }} persist-credentials: false - uses: cachix/install-nix-action@8aa03977d8d733052d78f4e008a241fd1dbf36b3 # v31.10.6 - name: Run update script From 5dd07d907f7c6e247bf2f7237f6d572d6d013517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damien=20Pl=C3=A9nard?= Date: Tue, 26 May 2026 22:31:52 +0200 Subject: [PATCH 2/2] chore: use shared renovate-config --- renovate.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 712e3f9..055bbd4 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"], + "extends": [ + "github>damoun/renovate-config" + ], "customManagers": [ { "customType": "regex",