Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: miracum/recruit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e5dd27b145cd19e8f27f404a69f35800826ed6d9
Choose a base ref
..
head repository: miracum/recruit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 52a2313715086ef8f77ed56e392351b2315404b5
Choose a head ref
Showing with 21 additions and 6 deletions.
  1. +21 −6 .renovaterc.json
27 changes: 21 additions & 6 deletions .renovaterc.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,39 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices", "group:allNonMajor"],
"extends": [
"config:best-practices",
"group:allNonMajor"
],
"ignoreDeps": [
"docker.io/library/postgres",
"postgresql",
"docker.io/bitnami/postgresql",
"ghcr.io/miracum/recruit/*"
],
"ignorePaths": ["**/node_modules/**", "**/bower_components/**", "fhir/**"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"fhir/**"
],
"pip-compile": {
"fileMatch": ["(^|/|\\.)requirements\\.in$"]
"fileMatch": [
"(^|/|\\.)requirements\\.txt$"
]
},
"packageRules": [
{
"matchManagers": ["github-actions"],
"matchManagers": [
"github-actions"
],
"groupName": "github-actions"
},
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["slsa-framework/slsa-github-generator"],
"matchManagers": [
"github-actions"
],
"matchPackageNames": [
"slsa-framework/slsa-github-generator"
],
"pinDigests": false
}
]