From ee28e45f8ecc1b9109d75389fbc5e3c7c641224a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 6 Oct 2024 21:38:55 +0200 Subject: [PATCH 1/2] Mark sidebar as orphan --- docs/en/sidebar.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/sidebar.rst b/docs/en/sidebar.rst index 10de4d0d..75d65555 100644 --- a/docs/en/sidebar.rst +++ b/docs/en/sidebar.rst @@ -1,3 +1,5 @@ +:orphan: + .. toctree:: :caption: How-to guides :depth: 3 From 399638a9f1bb2a148bcb418b06961b5de0dcbaa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 6 Oct 2024 21:39:51 +0200 Subject: [PATCH 2/2] Setup documentation workflow --- .github/workflows/documentation.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/documentation.yml diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml new file mode 100644 index 00000000..e9b2c718 --- /dev/null +++ b/.github/workflows/documentation.yml @@ -0,0 +1,20 @@ +name: "Documentation" + +on: + pull_request: + branches: + - "*.x" + paths: + - ".github/workflows/documentation.yml" + - "docs/**" + push: + branches: + - "*.x" + paths: + - ".github/workflows/documentation.yml" + - "docs/**" + +jobs: + documentation: + name: "Documentation" + uses: "doctrine/.github/.github/workflows/documentation.yml@5.1.0"