Skip to content

Commit

Permalink
Prevent running validate when pushing on main
Browse files Browse the repository at this point in the history
Rational is as follow:
    - We ran validate-book on each push on the PR branch anyway
    - We will run release_book which is a superset of validate
  • Loading branch information
Cedric committed Dec 2, 2023
1 parent 9dd617e commit 61df4fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/validate-book-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Validate LaTeX Document
on: [ push, pull_request ]
branches:
- '**' # All branches
- '!main' # But main as will do it anyway and more in release_book

jobs:
test_building_book:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 61df4fc

Please sign in to comment.