aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/commentCodeGeneration.ts
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2022-12-07 11:05:47 +0100
committerGitHub <[email protected]>2022-12-07 10:05:47 +0000
commitf1948bd5efac0acb286db398b665bb581fcaec27 (patch)
tree39177ce22c78e0ccf93653ca71928c8aacfd1251 /.github/workflows/commentCodeGeneration.ts
parent97dbfa198644da98dc3f423acaaeb2976647e52b (diff)
downloadfaker-f1948bd5efac0acb286db398b665bb581fcaec27.tar.xz
faker-f1948bd5efac0acb286db398b665bb581fcaec27.zip
infra: check test snapshots to be up to date (#1632)
Diffstat (limited to '.github/workflows/commentCodeGeneration.ts')
-rw-r--r--.github/workflows/commentCodeGeneration.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/commentCodeGeneration.ts b/.github/workflows/commentCodeGeneration.ts
index 715854cd..74a80927 100644
--- a/.github/workflows/commentCodeGeneration.ts
+++ b/.github/workflows/commentCodeGeneration.ts
@@ -21,7 +21,7 @@ module.exports = async (
issue_number: context.issue.number,
});
- const body = `Uncommitted changes were detected after runnning <code>generate:*</code> commands.\nPlease run <code>pnpm run generate:locales</code> and <code>pnpm run generate:api-docs</code> to generate/update the related files, and commit them.`;
+ const body = `Uncommitted changes were detected after runnning <code>generate:*</code> commands.\nPlease run <code>pnpm run generate:locales</code>, <code>pnpm run generate:api-docs</code>, and <code>pnpm run test -u</code> to generate/update the related files, and commit them.`;
const botComment = comments.find(
(comment) => comment.user?.type === 'Bot' && comment.body?.includes(body)