Skip to content

Commit 5c0df52

Browse files
authored
Merge pull request #9 from dafyddj/feat/copier-preset
feat: add basic Copier preset for Saltstack Formulas
2 parents d334c93 + 0706945 commit 5c0df52

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ repos:
2222
files: |
2323
(?x)(
2424
(^|/).?renovate(?:rc)?(?:\.json5?)?$|
25-
default.json
25+
default.json|
26+
copier.json
2627
)$

copier.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"description": "Copier preset for use with Saltstack Formulas' repos",
4+
"enabledManagers": [
5+
"copier"
6+
],
7+
"packageRules": [
8+
{
9+
"matchManagers": [
10+
"copier"
11+
],
12+
"description": "Limit branch creation to once a month",
13+
"extends": [
14+
"schedule:monthly"
15+
]
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)