Skip to content

Commit 0b5167c

Browse files
committed
[skip ci] Allow to run push workflows manually
As is, we're running the push workflow for all pushes and pull request, plus we run more comprehensive nightly workflow for all branches which had commits during the day. That means that security branches may not run CI for weeks or even months. In the meantime, dependencies might be updated, which can cause later workflow runs to fail. For instance, a few openssl tests fail due to security fixes in OpenSSL[1], an update of Oracle Instant Client causes a couple of oci8 and pdo_oci tests to fail[2], and the macOS builds do no longer even built (investigation pending). Therefore, we allow to run the pull workflow manually, so it is possible to check the CI condition of temporary inactive branches from time to time. [1] <#16097> [2] <#16107> Closes GH-16148.
1 parent 53cc92c commit 0b5167c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ on:
3333
- .circleci/*
3434
branches:
3535
- '**'
36+
workflow_dispatch: ~
3637
concurrency:
3738
group: ${{ github.workflow }}-${{ github.event.pull_request.url || github.run_id }}
3839
cancel-in-progress: true

0 commit comments

Comments
 (0)