From 3fba4e14dbf4331c76fdcd74a3dd27235c68a45a Mon Sep 17 00:00:00 2001 From: Craig McNicholas <41394833+cmcnicholas@users.noreply.github.com> Date: Fri, 21 May 2021 16:37:05 +0100 Subject: [PATCH 1/2] added header for yotta to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index eacdf7069..74add535e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ + > See the `feature/yotta-codegen` branch for modifications to support yotta tooling + # OpenAPI Typescript Codegen [![NPM][npm-image]][npm-url] From 69f77b418e01011f1b2fdfac9e449bad2969b7ef Mon Sep 17 00:00:00 2001 From: Craig McNicholas <41394833+cmcnicholas@users.noreply.github.com> Date: Wed, 28 Jun 2023 13:33:42 +0100 Subject: [PATCH 2/2] chore: update renovate concurrency --- renovate.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..954a36c27 --- /dev/null +++ b/renovate.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "prHourlyLimit": 2, + "prConcurrentLimit": 2, + "dependencyDashboard": true, + "lockFileMaintenance": { + "enabled": true, + "automerge": true + }, + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch"], + "matchCurrentVersion": "!/^0/", + "automerge": true + } + ] +}