Skip to content

Commit 59423c4

Browse files
committed
feat: add workflow_dispatch trigger to CI workflows
1 parent f770861 commit 59423c4

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/lint-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Lint PR
33
on:
44
pull_request:
55
branches: [main]
6+
workflow_dispatch:
67

78

89
env:

.github/workflows/preview-deployments.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
pull_request:
1111
branches:
1212
- main
13+
workflow_dispatch:
1314

1415
env:
1516
UV_SYSTEM_PYTHON: 1

.github/workflows/python-CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CI to test Robyn on major Linux, MacOS and Windows
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
name: Python Continuous integration
66

.github/workflows/rust-CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CI to build, test, format, and lint the Rust code
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
name: Rust Continuous integration
66

0 commit comments

Comments
 (0)