Skip to content

Commit

Permalink
[ci] Add workflow_dispatch in the "on" property
Browse files Browse the repository at this point in the history
  • Loading branch information
vvaltchev committed Jun 4, 2024
1 parent bc4acfe commit 910ae5a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Coverage
on: [pull_request, push]
on: [pull_request, push, workflow_dispatch]

env:
BUILD_TYPE: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Linux
on: [pull_request, push]
on: [pull_request, push, workflow_dispatch]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: MacOSX
on: [pull_request, push]
on: [pull_request, push, workflow_dispatch]

env:
BUILD_TYPE: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Windows
on: [pull_request, push]
on: [pull_request, push, workflow_dispatch]

jobs:
build:
Expand Down

0 comments on commit 910ae5a

Please sign in to comment.