Skip to content

Commit 3d09246

Browse files
committed
build: allow scripts during renovate update
This is needed as a workaround for PNPM due which causes the lock file to be broken due to Renovate passing `--ignore-pnpmfile` See: renovatebot/renovate#30812
1 parent a7e9f67 commit 3d09246

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/ng-renovate/runner-config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ module.exports = {
33
gitAuthor: 'Angular Robot <[email protected]>',
44
platform: 'github',
55
branchNameStrict: true,
6+
// Temporary workaround for https://github.com/renovatebot/renovate/discussions/30812
7+
allowScripts: true,
68
// Renovate fork PRs should never be editable as Renovate would otherwise
79
// not be able to delete the branches and future updates would be missed.
810
forkModeDisallowMaintainerEdits: true,

renovate-presets/default.json5

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
rangeStrategy: 'replace',
66
automerge: false,
77

8+
// Temporary workaround for https://github.com/renovatebot/renovate/discussions/30812
9+
ignoreScripts: false,
10+
811
// Schedule Renovate to run during off-peak hours
912
schedule: ['after 10:00pm every weekday', 'before 5:00am every weekday', 'every weekend'],
1013
prConcurrentLimit: 8,

0 commit comments

Comments
 (0)