From 3f4297dbc924ca76fdfba44975c64316f2236deb Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Wed, 11 Oct 2023 10:26:14 -0300 Subject: [PATCH] chore: Add md to rebuild patterns (#2798) The yarn formatting step currently checks md files as well. This means that an incorrectly formatted md file in yarn project will cause the yarn-project-formatting job to fail, but pushing a new commit with the fix won't trigger yarn-project to rebuild, so yarn-project-formatting will keep seeing the malformed md, and will keep failing. See [this workflow run](https://app.circleci.com/pipelines/github/AztecProtocol/aztec-packages/13854/workflows/4981ebef-0028-48a3-aa72-b456cba54a9e) for an example. --- build_manifest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_manifest.yml b/build_manifest.yml index 54b6c81fcc9..0bf9bdc89fc 100644 --- a/build_manifest.yml +++ b/build_manifest.yml @@ -101,7 +101,7 @@ yarn-project-base: yarn-project: buildDir: yarn-project rebuildPatterns: - - ^yarn-project/.*\\.(ts|js|cjs|mjs|json|html)$ + - ^yarn-project/.*\\.(ts|js|cjs|mjs|json|html|md)$ - ^yarn-project/Dockerfile dependencies: - yarn-project-base