We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45c22c2 + 539d291 commit 9cd20c6Copy full SHA for 9cd20c6
.github/workflows/test.yml
@@ -47,7 +47,9 @@ jobs:
47
# This job does nothing and is only used for the branch protection
48
# or multi-stage CI jobs, like making sure that all tests pass before
49
# a publishing job is started.
50
- if: always()
+ if: >-
51
+ github.repository_owner == 'pypa'
52
+ || github.event_name != 'schedule'
53
54
needs:
55
- build
.github/workflows/translation.yml
@@ -15,6 +15,7 @@ env:
15
jobs:
16
build:
17
runs-on: ubuntu-latest
18
+ if: github.repository_owner == 'pypa'
19
20
steps:
21
- name: Grab the repo src
0 commit comments