Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b28b9fa

Browse filesBrowse 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
Copy full SHA for b28b9fa

File tree

1 file changed

+1
-8
lines changed
Filter options

1 file changed

+1
-8
lines changed

‎.github/workflows/tests.yml

Copy file name to clipboardExpand all lines: .github/workflows/tests.yml
+1-8Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.