Skip to content

Commit 6943fb5

Browse files
fix: stop all-contributors-cli from being updated beyond 6.26.1 (#2181)
## PR Checklist - [x] Addresses an existing open issue: fixes #2177 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Along with #2180, this will keep `all-contributors-cli` on the version that ignores Prettier. Because the app does too. 🎁
1 parent 23a5fe7 commit 6943fb5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"config:best-practices",
77
"replacements:all"
88
],
9-
"ignoreDeps": ["codecov/codecov-action"],
9+
"ignoreDeps": ["all-contributors-cli", "codecov/codecov-action"],
1010
"labels": ["dependencies"],
1111
"minimumReleaseAge": "7 days",
1212
"patch": { "enabled": false },

src/integration.test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
blockESLint,
1515
blockKnip,
1616
blockMain,
17+
blockRenovate,
1718
blockTemplatedWith,
1819
presets,
1920
} from "./index.js";
@@ -107,6 +108,9 @@ If you're interested in learning more, see the 'getting started' docs on:
107108
blockMain({
108109
runArgs: ["--version"],
109110
}),
111+
blockRenovate({
112+
ignoreDeps: ["all-contributors-cli"],
113+
}),
110114
],
111115
blocks: {
112116
add: [blockAreTheTypesWrong],

0 commit comments

Comments
 (0)