We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e77e8e2 commit 671a337Copy full SHA for 671a337
.github/workflows/ci.yml
@@ -24,16 +24,11 @@ jobs:
24
tests:
25
name: Run tests
26
27
+ # if 'schedule' was the trigger,
28
+ # don't run it on contributors' forks
29
if: >-
- # if 'schedule' was the trigger,
- # 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
- }}
+ github.repository == 'python/typing_extensions'
+ || github.event_name != 'schedule'
37
38
strategy:
39
fail-fast: false
0 commit comments