From 7e42c0bb1a239eddd7447acaa06db50f5ac9abfa Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 3 Jun 2026 17:19:31 -0400 Subject: [PATCH] danger: Require attestation that database schema migrations have been applied (#58469) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR updates the Danger check for touching the Collab schema files to require attestation that the database schema migrations have been created and applied. If there are changes to the schema files without the attestation, Danger will fail the status check with an error: Screenshot 2026-06-03 at 4 58 56 PM When the attestation clause is present, Danger will report it as such: Screenshot 2026-06-03 at 4 59 45 PM Release Notes: - N/A --- script/danger/dangerfile.ts | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/script/danger/dangerfile.ts b/script/danger/dangerfile.ts index 99a29e51d9f..634d1df7ff0 100644 --- a/script/danger/dangerfile.ts +++ b/script/danger/dangerfile.ts @@ -61,6 +61,9 @@ if (includesIssueUrl) { ); } +const SCHEMA_CHANGE_ATTESTATION = + "The corresponding database schema migration has been created in the Cloud repo and applied to the production database."; + const MIGRATION_SCHEMA_FILES = [ "crates/collab/migrations/20251208000000_test_schema.sql", "crates/collab/migrations.sqlite/20221109000000_test_schema.sql", @@ -71,13 +74,24 @@ const modifiedSchemaFiles = danger.git.modified_files.filter((file) => ); if (modifiedSchemaFiles.length > 0) { - warn( - [ - "This PR modifies database schema files.", - "", - "If you are making database changes, a migration needs to be added in the Cloud repository.", - ].join("\n"), - ); + if (body.includes(SCHEMA_CHANGE_ATTESTATION)) { + message( + [ + "This PR modifies database schema files.", + "", + `The author has attested that ${SCHEMA_CHANGE_ATTESTATION.substring(0, 1).toLowerCase() + SCHEMA_CHANGE_ATTESTATION.substring(1)}`, + ].join("\n"), + ); + } else { + const modifiedSchemaFilesStr = modifiedSchemaFiles.map((path) => "`" + path + "`").join(", "); + fail( + [ + `This PR modifies database schema files (${modifiedSchemaFilesStr}), which requires creating a schema migration in the Cloud repository.`, + "Once the schema migraation has been created and applied, please add the following attestation to your PR description: ", + `"${SCHEMA_CHANGE_ATTESTATION}"`, + ].join("\n\n"), + ); + } } const FIXTURE_CHANGE_ATTESTATION = "Changes to test fixtures are intentional and necessary.";