From 362dc8fd801fcc732e91c3bd2734261de07054c1 Mon Sep 17 00:00:00 2001 From: Sebastien Morais Date: Thu, 19 Oct 2023 20:25:20 +0200 Subject: [PATCH 1/2] CI: Add edb label to labels.yml --- .github/labels.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/labels.yml b/.github/labels.yml index db55cba8545..413e3847c51 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -29,3 +29,7 @@ - name: testing description: Anything related to testing color: 5802B8 + +- name: edb + description: Anything related to the EDB API + color: C4C25D From f8c7692a43bab6e24a06a5ab49762d7034a314d5 Mon Sep 17 00:00:00 2001 From: Samuel Lopez <85613111+Samuelopez-ansys@users.noreply.github.com> Date: Fri, 20 Oct 2023 16:37:24 +0200 Subject: [PATCH 2/2] Disable PDF Documentation (#3777) --- .github/workflows/full_documentation.yml | 36 ++++++++++++------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/full_documentation.yml b/.github/workflows/full_documentation.yml index 9803b95be47..4f80360f4f5 100644 --- a/.github/workflows/full_documentation.yml +++ b/.github/workflows/full_documentation.yml @@ -73,10 +73,10 @@ jobs: testenv\Scripts\Activate.ps1 sphinx-build -j auto --color -b html -a doc/source doc/_build/html - - name: Create PDF Documentations - run: | - testenv\Scripts\Activate.ps1 - .\doc\make.bat pdf +# - name: Create PDF Documentations +# run: | +# testenv\Scripts\Activate.ps1 +# .\doc\make.bat pdf - name: Upload HTML documentation artifact uses: actions/upload-artifact@v3 @@ -92,20 +92,20 @@ jobs: path: doc/_build/html/EDBAPI retention-days: 7 - - name: Upload PDF documentation artifact - uses: actions/upload-artifact@v3 - with: - name: documentation-pdf - path: doc/_build/pdf - retention-days: 7 - - - name: Release - uses: softprops/action-gh-release@v1 - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - with: - generate_release_notes: true - files: | - doc/_build/pdf +# - name: Upload PDF documentation artifact +# uses: actions/upload-artifact@v3 +# with: +# name: documentation-pdf +# path: doc/_build/pdf +# retention-days: 7 + +# - name: Release +# uses: softprops/action-gh-release@v1 +# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') +# with: +# generate_release_notes: true +# files: | +# doc/_build/pdf doc-deploy-stable: name: Deploy stable documentation