We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f1d386 commit c581c6bCopy full SHA for c581c6b
.github/workflows/validate.yml
@@ -0,0 +1,27 @@
1
+name: Validate Renovate presets
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "default.json"
7
+ - ".github/workflows/validate.yml"
8
+ workflow_dispatch:
9
10
+permissions: {}
11
12
+jobs:
13
+ validate:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v6
18
+ with:
19
+ persist-credentials: false
20
21
+ - run: |
22
+ docker run --rm -v \
23
+ "${{ github.workspace }}:/workspace" \
24
+ -w /workspace \
25
+ ghcr.io/renovatebot/renovate:latest \
26
+ renovate-config-validator \
27
+ default.json
default.json
@@ -3,6 +3,5 @@
"extends": [
"config:recommended"
],
- "minimumReleaseAge": "7 days",
- "minimumReleaseAgeBehaviour": "timestamp-required"
+ "minimumReleaseAge": "7 days"
}
0 commit comments