Skip to content

Commit 7b9c2f1

Browse files
committed
Allow for running various workflows via workflow dispatch
It seems we forgot to do this, but it's useful e.g. to run the test workflow manually.
1 parent ef7d5f2 commit 7b9c2f1

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/cargo-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches: [main]
66
pull_request:
7+
workflow_dispatch:
78

89
env:
910
CARGO_TERM_COLOR: always

.github/workflows/check-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches: [main]
55
pull_request:
6+
workflow_dispatch:
67
schedule:
78
- cron: "0 0 * * 1" # midnight every Monday
89

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches: [main]
66
pull_request:
7+
workflow_dispatch:
78

89
jobs:
910
pre-commit:

0 commit comments

Comments
 (0)