Skip to content

Commit

Permalink
Configure Renovate (#1)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

Welcome to [Renovate](https://github.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/ci.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.
  - Use semantic prefixes for commit messages and PR titles.

🔡 Would you like to change the way Renovate is upgrading your
dependencies? Simply edit the `renovate.json` in this branch with your
custom config and the list of Pull Requests in the "What to Expect"
section below will be updated the next time Renovate runs.

---

### What to Expect

With your current configuration, Renovate will create 6 Pull Requests:

<details>
<summary>chore(deps): update dependency typescript to v4.9.5</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/typescript`
  - Merge into: `main`
- Upgrade [typescript](https://github.com/Microsoft/TypeScript) to
`4.9.5`


</details>

<details>
<summary>chore(deps): update devdependencies</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/devdependencies`
  - Merge into: `main`
- Upgrade
[@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped) to
`29.5.7`
- Upgrade
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped) to
`14.18.63`


</details>

<details>
<summary>chore(deps): update lint</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/lint`
  - Merge into: `main`
  - Upgrade [eslint](https://github.com/eslint/eslint) to `8.53.0`
  - Upgrade eslint-plugin-mmkal to `0.1.2`


</details>

<details>
<summary>chore(deps): update actions/checkout action to v4</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/actions-checkout-4.x`
  - Merge into: `main`
- Upgrade [actions/checkout](https://github.com/actions/checkout) to
`v4`


</details>

<details>
<summary>chore(deps): update dependency typescript to v5</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/major-typescript`
  - Merge into: `main`
- Upgrade [typescript](https://github.com/Microsoft/TypeScript) to
`5.2.2`


</details>

<details>
<summary>chore(deps): update devdependencies (major)</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/major-devdependencies`
  - Merge into: `main`
- Upgrade
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped) to
`^20.0.0`
  - Upgrade [jest](https://github.com/jestjs/jest) to `29.7.0`
- Upgrade [strip-ansi](https://github.com/chalk/strip-ansi) to `7.1.0`
- Upgrade [ts-jest](https://github.com/kulshekhar/ts-jest) to `29.1.1`
- Upgrade [ts-morph](https://github.com/dsherret/ts-morph) to `20.0.0`


</details>

<br />

🚸 Branch creation will be limited to maximum 2 per hour, so it doesn't
swamp any CI resources or overwhelm the project. See docs for
`prhourlylimit` for details.


---

❓ 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://github.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/mmkal/expect-type).


<!--renovate-config-hash:46aabe71e8e59ae4c2e2460eb39a1d958ad13b1614d564001206e3fb92cd8bea-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Misha Kaletsky <15040698+mmkal@users.noreply.github.com>
  • Loading branch information
renovate[bot] and mmkal authored Nov 6, 2023
1 parent c23f0c1 commit b9edaf5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommits"
],
"prConcurrentLimit": 4,
"dependencyDashboard": true,
"dependencyDashboardAutoclose": true,
"packageRules": [
{
"groupName": "typescript",
"matchPackagePatterns": [
"typescript"
]
},
{
"depTypeList": [
"devDependencies"
],
"groupName": "devDependencies",
"excludePackagePatterns": [
"eslint",
"prettier",
"typescript"
],
"automerge": true
},
{
"depTypeList": [
"devDependencies"
],
"groupName": "lint",
"matchPackagePatterns": [
"eslint",
"prettier"
],
"automerge": true
}
]
}

0 comments on commit b9edaf5

Please sign in to comment.