Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b28b9fa

Browse files
committed
CI: Remove unnecessary skip conditionals
These are handled by GH Actions automatically: https://docs.github.com/en/actions/managing-workflow-runs/skipping-workflow-runs
1 parent cc8cee5 commit b28b9fa

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,7 @@ env:
3131
jobs:
3232
test:
3333
if: |
34-
github.event_name == 'workflow_dispatch' ||
35-
(
36-
github.repository == 'matplotlib/matplotlib' &&
37-
!contains(github.event.head_commit.message, '[ci skip]') &&
38-
!contains(github.event.head_commit.message, '[skip ci]') &&
39-
!contains(github.event.head_commit.message, '[skip github]') &&
40-
!contains(github.event.head_commit.message, '[ci doc]')
41-
)
34+
github.event_name == 'workflow_dispatch' || github.repository == 'matplotlib/matplotlib'
4235
permissions:
4336
contents: read
4437
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }} ${{ matrix.name-suffix }}"

0 commit comments

Comments
 (0)