Skip to content

Commit b868d96

Browse files
chore: disable Renovate's digest updates (#1747)
## PR Checklist - [x] Addresses an existing open issue: temporarily reprieves #1742, but does not resolve it - [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 Just disables the most common problematic updates for this repo. 💖
1 parent 2d0078c commit b868d96

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/renovate.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"automerge": true,
4+
"digest": { "enabled": false },
45
"extends": ["config:best-practices", "replacements:all"],
56
"ignoreDeps": ["codecov/codecov-action"],
67
"labels": ["dependencies"],

script/__snapshots__/migrate-test-e2e.ts.snap

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22

3+
exports[`expected file changes > .github/renovate.json 1`] = `
4+
"--- a/.github/renovate.json
5+
+++ b/.github/renovate.json
6+
@@ ... @@
7+
{
8+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
9+
"automerge": true,
10+
- "digest": { "enabled": false },
11+
"extends": ["config:best-practices", "replacements:all"],
12+
"ignoreDeps": ["codecov/codecov-action"],
13+
"labels": ["dependencies"],"
14+
`;
15+
316
exports[`expected file changes > .github/workflows/ci.yml 1`] = `
417
"--- a/.github/workflows/ci.yml
518
+++ b/.github/workflows/ci.yml

script/migrate-test-e2e.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { assert, describe, expect, test } from "vitest";
77
const filesExpectedToBeChanged = [
88
"README.md",
99
"knip.json",
10+
".github/renovate.json",
1011
".github/workflows/ci.yml",
1112
".gitignore",
1213
".prettierignore",

0 commit comments

Comments
 (0)