From b54b194f28aa3880fa94d9370b8c00d795f0877f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Pintos=20L=C3=B3pez?= Date: Wed, 6 Sep 2023 23:17:18 +0200 Subject: [PATCH 1/2] docs: add build gh action badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ad8a53e..f3f5ba6 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build status](https://github.com/cuaklabs/ajstt/workflows/build/badge.svg)](https://github.com/cuaklabs/ajstt/workflows/build/badge.svg) + ⚠️ **This is currently a work in progress** ⚠️ Another Json Schema to Typescript Transpiler From a0c9a815764afca7e10869d9a3982be3eeebd82e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Pintos=20L=C3=B3pez?= Date: Wed, 6 Sep 2023 23:17:51 +0200 Subject: [PATCH 2/2] chore: add renovatebot integration --- renovate.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..08b2f27 --- /dev/null +++ b/renovate.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "automerge": false, + "constraints": { + "pnpm": "7" + }, + "extends": ["config:base", ":disableRateLimiting"], + "ignoreDeps": ["eslint-plugin-import"], + "rebaseWhen": "conflicted", + "semanticCommits": "enabled", + "schedule": [ + "at any time" + ], + "packageRules": [ + { + "groupName": "auto merge on patch or minor", + "automerge": true, + "matchUpdateTypes": ["patch", "minor"], + "excludePackageNames": ["turbo", "typescript"] + } + ] +}