Skip to content

Commit

Permalink
Ignoring changes due to bug with many files detection
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCN7 committed Sep 18, 2024
1 parent 4ea3eb4 commit a509fdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ jobs:
doc:
- 'docs/source/**'
- name: Install dependencies
if: steps.verify-documentation-update.outputs.doc == 'true'
#if: steps.verify-documentation-update.outputs.doc == 'true'
run: |
apt install pandoc
pip install -e .[doc]
- name: Check build docs
if: steps.verify-documentation-update.outputs.doc == 'true'
#if: steps.verify-documentation-update.outputs.doc == 'true'
run: sphinx-build -M html docs/source docs/build
- name: Check sphinx spelling
if: steps.verify-documentation-update.outputs.doc == 'true'
#if: steps.verify-documentation-update.outputs.doc == 'true'
run: sphinx-build -M spelling docs/source docs/build

tests:
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/merge_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,16 @@ jobs:
filters: |
doc:
- 'docs/source/**'
- '!docs/compilation/**'
- '!docs/build/**'
- name: Install dependencies
if: steps.verify-documentation-update.outputs.doc == 'true'
#if: steps.verify-documentation-update.outputs.doc == 'true'
run: |
apt install pandoc
pip install -e .[doc]
- name: Build multiversion docs
if: steps.verify-documentation-update.outputs.doc == 'true'
#if: steps.verify-documentation-update.outputs.doc == 'true'
run: sphinx-multiversion docs/source docs/compilation
- name: Deploy to GitHub Pages
if: steps.verify-documentation-update.outputs.doc == 'true'
#if: steps.verify-documentation-update.outputs.doc == 'true'
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
Expand Down

0 comments on commit a509fdc

Please sign in to comment.