File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1414jobs :
1515 Test-Local-Uploads :
1616 runs-on : ubuntu-latest
17- if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event_name == 'pull_request' }}
17+ if : |
18+ (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') ||
19+ (github.event_name == 'workflow_dispatch') ||
20+ (github.event_name == 'push' && github.event.workflow_run.conclusion == 'success') ||
21+ (github.event_name == 'pull_request' && github.event.workflow_run.conclusion == 'success')
1822
1923 env :
2024 COMPOSE_FILE : ./docker-compose.yml
Original file line number Diff line number Diff line change 1414jobs :
1515 Test-Nginx-Uploads :
1616 runs-on : ubuntu-latest
17- if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event_name == 'pull_request' }}
17+ if : |
18+ (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') ||
19+ (github.event_name == 'workflow_dispatch') ||
20+ (github.event_name == 'push' && github.event.workflow_run.conclusion == 'success') ||
21+ (github.event_name == 'pull_request' && github.event.workflow_run.conclusion == 'success')
1822
1923 env :
2024 COMPOSE_FILE : ./docker-compose-nginx.yml
You can’t perform that action at this time.
0 commit comments