Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19 from trueberryless-org/update-template-files

ci: sync template files [skip netlify]

authored by

Felix Schneider and committed by
GitHub
6e05f3ae 20147c07

+32 -31
+32
.github/renovate.json
··· 1 + { 2 + "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 + "extends": [ 4 + ":disableDependencyDashboard", 5 + ":disablePeerDependencies", 6 + ":semanticPrefixFixDepsChoreOthers", 7 + ":ignoreModulesAndTests", 8 + "workarounds:all", 9 + "helpers:pinGitHubActionDigestsToSemver", 10 + "docker:disable" 11 + ], 12 + "rangeStrategy": "bump", 13 + "ignorePaths": ["**/node_modules/**"], 14 + "commitMessageSuffix": "[skip ci]", 15 + "packageRules": [ 16 + { 17 + "groupName": "github-actions", 18 + "matchManagers": ["github-actions"] 19 + }, 20 + { 21 + "matchManagers": ["npm"], 22 + "matchDepTypes": ["dependencies", "devDependencies"], 23 + "separateMajorMinor": true 24 + }, 25 + { 26 + "description": "Disable package manager version updates", 27 + "matchPackageNames": ["pnpm"], 28 + "matchDepTypes": ["packageManager"], 29 + "enabled": false 30 + } 31 + ] 32 + }
-31
.github/renovate.json5
··· 1 - { 2 - $schema: "https://docs.renovatebot.com/renovate-schema.json", 3 - extends: [ 4 - ":disableDependencyDashboard", 5 - ":semanticPrefixFixDepsChoreOthers", 6 - ":ignoreModulesAndTests", 7 - "workarounds:all", 8 - "helpers:pinGitHubActionDigestsToSemver", 9 - "docker:disable", 10 - ], 11 - rangeStrategy: "bump", 12 - ignorePaths: ["**/node_modules/**"], 13 - packageRules: [ 14 - { 15 - groupName: "github-actions", 16 - matchManagers: ["github-actions"], 17 - }, 18 - { 19 - matchManagers: ["npm"], 20 - groupName: "dependencies", 21 - matchDepTypes: ["devDependencies", "dependencies", "peerDependencies"], 22 - enabled: false, 23 - }, 24 - { 25 - description: "Disable package manager version updates", 26 - matchPackageNames: ["pnpm"], 27 - matchDepTypes: ["packageManager"], 28 - enabled: false, 29 - }, 30 - ], 31 - }