Skip to content

Commit 7cf5eab

Browse files
committed
Updates workflow .yaml to try to ignore draft PRs.
1 parent baec425 commit 7cf5eab

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test_quick.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515

1616
master:
1717
name: mupdf master
18+
if: github.event.pull_request.draft == false || github.event_name == 'workflow_dispatch'
1819
runs-on: ${{ matrix.os }}
1920
strategy:
2021
matrix:
@@ -31,6 +32,7 @@ jobs:
3132

3233
release:
3334
name: mupdf release
35+
if: github.event.pull_request.draft == false || github.event_name == 'workflow_dispatch'
3436
runs-on: ${{ matrix.os }}
3537
strategy:
3638
matrix:
@@ -43,4 +45,4 @@ jobs:
4345
env:
4446
PYMUPDF_test_args: ${{inputs.args}}
4547
run:
46-
python scripts/test.py build test -m 'git:--branch 1.26.x https://github.com/ArtifexSoftware/mupdf.git' -a PYMUPDF_test_args
48+
python scripts/test.py build test -m 'git:--branch 1.26.x https://github.com/ArtifexSoftware/mupdf.git' -a PYMUPDF_test_args

0 commit comments

Comments
 (0)