From eb259a3783fe7fc65de0adfd93605844dd240938 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Mon, 25 Sep 2023 09:12:03 +0200 Subject: [PATCH] chore: Doc only should skip build (#4820) ## About the changes This fakes the build on docs-only PRs to be able to have a green build. Touching a doc to validate it works --- .github/workflows/build_doc_prs.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build_doc_prs.yaml b/.github/workflows/build_doc_prs.yaml index 122eedc5e6..798aa7146d 100644 --- a/.github/workflows/build_doc_prs.yaml +++ b/.github/workflows/build_doc_prs.yaml @@ -23,3 +23,12 @@ jobs: sed -i 's/chalk\(\w\|\.\)\+//g' node_modules/@docusaurus/core/lib/client/serverEntry.js echo "Chalk removed" yarn build + build: + runs-on: ubuntu-latest + name: build + + strategy: + matrix: + node-version: [18.x] + steps: + - run: echo "Fake build step for docs only PRs"