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 671a337

Browse filesBrowse files
Fix 'Test and lint' workflow running on forks (#551)
1 parent e77e8e2 commit 671a337
Copy full SHA for 671a337

File tree

1 file changed

+4
-9
lines changed
Filter options

1 file changed

+4
-9
lines changed

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+4-9Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,11 @@ jobs:
2424
tests:
2525
name: Run tests
2626

27+
# if 'schedule' was the trigger,
28+
# don't run it on contributors' forks
2729
if: >-
28-
# if 'schedule' was the trigger,
29-
# don't run it on contributors' forks
30-
${{
31-
github.event_name != 'schedule'
32-
|| (
33-
github.repository == 'python/typing_extensions'
34-
&& github.event_name == 'schedule'
35-
)
36-
}}
30+
github.repository == 'python/typing_extensions'
31+
|| github.event_name != 'schedule'
3732
3833
strategy:
3934
fail-fast: false

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.