From e270bdb48bf679e05bcc9835a1668a24e0921711 Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Fri, 13 Mar 2026 21:20:17 +0100 Subject: [PATCH] ci: add build-docs workflow Call the centralized reusable workflow from reqstool/.github to validate Antora docs build cleanly on PRs and pushes to main. Signed-off-by: jimisola --- .github/workflows/build-docs.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/build-docs.yml diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml new file mode 100644 index 0000000..abb7f9f --- /dev/null +++ b/.github/workflows/build-docs.yml @@ -0,0 +1,15 @@ +name: Build Docs +on: + workflow_dispatch: + pull_request: + paths: + - "docs/**" + push: + branches: + - main + paths: + - "docs/**" + +jobs: + build: + uses: reqstool/.github/.github/workflows/build-docs.yml@main