From 8d6910ae8fb6c2666af2e86eb4a2583c1fb111b5 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 11 Sep 2024 10:25:35 +0000 Subject: [PATCH] chore: Automate dependency updates using renovate --- .github/workflows/renovate-config-validator.yml | 12 ++++++++++++ .npmrc | 1 + renovate.json | 7 +++++++ 3 files changed, 20 insertions(+) create mode 100644 .github/workflows/renovate-config-validator.yml create mode 100644 .npmrc create mode 100644 renovate.json diff --git a/.github/workflows/renovate-config-validator.yml b/.github/workflows/renovate-config-validator.yml new file mode 100644 index 0000000..c590b98 --- /dev/null +++ b/.github/workflows/renovate-config-validator.yml @@ -0,0 +1,12 @@ +name: "Validate renovate config" +on: + push: + paths: + - renovate.json + +jobs: + renovate-config-validator: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: bettermarks/renovate-config/validator@main diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..cffe8cd --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +save-exact=true diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..114623c --- /dev/null +++ b/renovate.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>bettermarks/renovate-config:javascript", + "github>bettermarks/renovate-config:python" + ] +} \ No newline at end of file