Skip to content

Commit 91eed4f

Browse files
committed
internalChecksFilter
1 parent 38703c0 commit 91eed4f

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/renovate.json5

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"enabled": true
1212
},
1313

14+
// https://docs.renovatebot.com/key-concepts/minimum-release-age/
1415
"minimumReleaseAge": "1 week",
16+
"internalChecksFilter": "strict",
1517

1618
"automerge": true,
1719
"automergeType": "branch",

apps/RenovateDefaultConfig.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,25 @@ With the constant news of malicious NPM packages getting uploaded, a tool that b
2424

2525
For OSS projects, you probably don't have budget for a premium, validated virtual package feed. It would be nice to use Socket.dev as a required github check for PRs, but that also seems to be a premium feature.
2626
In renovate, can use [minimumReleaseAge](https://docs.renovatebot.com/configuration-options/#minimumreleaseage) to slow down changes. Probably also want config `prCreation=not-pending`.
27+
```json
28+
"minimumReleaseAge": "1 week",
29+
"internalChecksFilter": "strict",
30+
```
2731

2832
Alternatively, could use [[Snyk]] status check on [[Renovate]]'s PRs: https://chatgpt.com/s/t_68c60566a0048191ba7c3352cb7b7e67
2933
### Rename to JSON5 to allow comments
3034
```bash
3135
mkdir -p .github
3236
mv renovate.json .github/renovate.json5
3337
```
38+
### Lock File Maintenance [](https://docs.renovatebot.com/configuration-options/#lockfilemaintenance "Permanent link")
39+
Regenerates e.g. `uv.lock` or `package-lock.json` on a schedule.
40+
```json
41+
"lockFileMaintenance": {
42+
"enabled": true
43+
},
44+
```
45+
3446
### Dashboard autoclose, concurrency, PR body
3547

3648
```json

0 commit comments

Comments
 (0)