Skip to content

Commit

Permalink
Fix rules in Build Docs workflow
Browse files Browse the repository at this point in the history
The worklfow was missing `path` restictions on the `master` branch for pull
requests, and was not triggering properly in forks due to misconfigured branch
limitations.

Signed-off-by: Winford <[email protected]>
  • Loading branch information
UncleGrumpy committed Oct 3, 2023
1 parent 6f08377 commit 77456f2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ on:
pull_request:
branches:
- 'master'
paths:
- '.github/workflows/**'
- 'CMakeLists.txt'
- 'doc/**'
- 'libs/**'
- 'src/libAtomVM/**'
push:
tags:
- '*'
branches:
- '!master'
repositories:
- '!atomvm/AtomVM'
paths:
- '.github/workflows/**'
- 'CMakeLists.txt'
Expand Down

0 comments on commit 77456f2

Please sign in to comment.