From 5152bab7c763a9d36d552fd3e553ac77190a6b64 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 13:02:58 +0000 Subject: [PATCH 1/4] Add renovate.json --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..39a2b6e --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ] +} From 63468a846b76f1a6f45be4d0bcb494ad741c2860 Mon Sep 17 00:00:00 2001 From: Paul DelRe Date: Fri, 14 Oct 2022 09:22:46 -0400 Subject: [PATCH 2/4] port settings from Dependabot config --- renovate.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 39a2b6e..6f28968 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" - ] + "config:base", + "schedule:daily" + ], + "enabledManagers": ["github-actions"] } From 690c2ba50825101a5a8b1eefe5ecf9a2fb173148 Mon Sep 17 00:00:00 2001 From: Paul DelRe Date: Fri, 14 Oct 2022 10:07:57 -0400 Subject: [PATCH 3/4] remove Dependabot --- .github/dependabot.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 6589ea8..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,12 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - From 3d7df110bd40f355df0f8d8cf9b92886c5d3b708 Mon Sep 17 00:00:00 2001 From: Paul DelRe Date: Fri, 14 Oct 2022 12:56:01 -0400 Subject: [PATCH 4/4] add Renovate lint action --- .github/workflows/lint.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7ca3350..16fe591 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,3 +19,8 @@ jobs: with: config: '.markdownlint.json' args: '**/*.md .github/**/*.md' + + - name: 🧼 lint renovate config # Validates changes to renovate.json config file + uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.2 + with: + config_file_path: 'renovate.json'