diff options
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f78111b1..88788333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,8 @@ jobs: activate: if: | (github.event_name == 'schedule' && github.repository_owner == 'asciidoctor') || - (github.event_name != 'schedule' && !endsWith(github.event.head_commit.message, '[skip ci]')) + github.event_name == 'push' || github.event_name == 'workflow_dispatch' || + (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'docs/')) runs-on: ubuntu-latest steps: - name: Proceed |
