From afa12e90d301a607c9625c649251f16b42a4c63a Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Wed, 27 Dec 2023 22:08:21 +0100
Subject: [PATCH] chore: configure renovate (#2)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This
is an onboarding PR to help you understand and configure settings before
regular Pull Requests begin.
🚦 To activate Renovate, merge this Pull Request. To disable Renovate,
simply close this Pull Request unmerged.
---
### Detected Package Files
* `.github/workflows/test.yml` (github-actions)
* `package.json` (npm)
### Configuration Summary
Based on the default config's presets, Renovate will:
- Start dependency updates only once this onboarding PR is merged
- Show all Merge Confidence badges for pull requests.
- Enable Renovate Dependency Dashboard creation.
- Use semantic commit type `fix` for dependencies and `chore` for all
others if semantic commits are in use.
- Ignore `node_modules`, `bower_components`, `vendor` and various
test/tests directories.
- Group known monorepo packages together.
- Use curated list of recommended non-monorepo package groupings.
- Apply crowd-sourced package replacement rules.
- Apply crowd-sourced workarounds for known problems with packages.
- Disable Renovate Dependency Dashboard creation.
🔡 Do you want to change how Renovate upgrades your dependencies? Add
your custom config to `renovate.json` in this branch. Renovate will
update the Pull Request description the next time it runs.
---
### What to Expect
With your current configuration, Renovate will create 1 Pull Request:
fix(deps): update dependency axios to v1.6.3
- Schedule: ["at any time"]
- Branch name: `renovate/axios-1.x-lockfile`
- Merge into: `master`
- Upgrade [axios](https://togithub.com/axios/axios) to `1.6.3`
---
❓ Got questions? Check out Renovate's
[Docs](https://docs.renovatebot.com/), particularly the Getting Started
section.
If you need any further assistance then you can also [request help
here](https://togithub.com/renovatebot/renovate/discussions).
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/tf2pickup-org/serveme-tf-client).
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michal Garapich
---
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 0000000..471c962
--- /dev/null
+++ b/renovate.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": [
+ "config:recommended",
+ ":disableDependencyDashboard"
+ ],
+ "packageRules": [
+ {
+ "depTypeList": ["devDependencies"],
+ "automerge": true
+ },
+ {
+ "updateTypes": ["minor", "patch", "pin", "digest"],
+ "automerge": true
+ }
+ ],
+ "automergeType": "branch",
+ "labels": ["renovate"],
+ "semanticCommits": "enabled"
+}