We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40ba9dd commit 100bb36Copy full SHA for 100bb36
1 file changed
.github/workflows/test_pyqt5.yml
@@ -22,11 +22,12 @@ on:
22
- 'build_latest'
23
default: 'all'
24
schedule:
25
+ # Only the "build_latest" job runs on schedule (see execution conditions below)
26
- cron: "0 5 * * 1"
27
28
jobs:
29
build:
- if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.job_to_run == 'all' || github.event.inputs.job_to_run == 'build' }}
30
+ if: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch' && (github.event.inputs.job_to_run == 'all' || github.event.inputs.job_to_run == 'build')) }}
31
32
env:
33
DISPLAY: ':99.0'
0 commit comments