Commit 839147e6 authored by to be continuous bot's avatar to be continuous bot Committed by Clement Bois
Browse files

chore: enable renovate

parent 991fd5f1
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
include:
  # Node.js template
  - component: "$CI_SERVER_FQDN/to-be-continuous/node/gitlab-ci-node@4.2"
  - component: "$CI_SERVER_FQDN/to-be-continuous/node/gitlab-ci-node@4"
    inputs:
      publish-enabled: true
  # Docker template
  - component: "$CI_SERVER_FQDN/to-be-continuous/docker/gitlab-ci-docker@6.1"
  - component: "$CI_SERVER_FQDN/to-be-continuous/docker/gitlab-ci-docker@6"
  # Semantic-release template
  - component: "$CI_SERVER_FQDN/to-be-continuous/semantic-release/gitlab-ci-semrel@3.13"
  - component: "$CI_SERVER_FQDN/to-be-continuous/semantic-release/gitlab-ci-semrel@3"
+270 −2114

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
    "eslint": "^9.20.0",
    "eslint-config-prettier": "^10.0.1",
    "husky": "^9.1.7",
    "npm-run-all": "^4.1.5",
    "npm-run-all2": "^7.0.2",
    "prettier": "^3.5.0"
  },
  "repository": {

renovate.json

0 → 100644
+34 −0
Original line number Diff line number Diff line
{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": ["config:recommended", ":dependencyDashboard"],
  "labels": ["dependencies"],
  "packageRules": [
    {
      "groupName": "npm outdated",
      "matchManagers": ["npm"],
      "matchUpdateTypes": ["minor", "patch"]
    },
    {
      "groupName": "tbc templates",
      "matchPackageNames": ["to-be-continuous/*"]
    }
  ],
  "customManagers": [
    {
      "customType": "regex",
      "fileMatch": ["\\.gitlab-ci\\.ya?ml$"],
      "matchStrings": [
        "\\s?_IMAGE:\\s['\"](?<registryUrls>.*?)\\/(?<depName>.*?):(?<currentValue>.*)['\"]"
      ],
      "datasourceTemplate": "docker"
    },
    {
      "customType": "regex",
      "fileMatch": ["\\.gitlab-ci\\.ya?ml$"],
      "matchStrings": [
        "\\s?image:\\s['\"](?<registryUrls>.*?)\\/(?<depName>.*?):(?<currentValue>.*)['\"]"
      ],
      "datasourceTemplate": "docker"
    }
  ]
}