Skip to content

Commit 3eb6120

Browse files
committed
CI: add workflow_dispatch to all workflows
1 parent f6109b8 commit 3eb6120

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Coverage
22

33
on:
4-
- push
5-
- pull_request
6-
- workflow_dispatch
4+
push:
5+
pull_request:
6+
workflow_dispatch:
77

88
env:
99
CMAKE_VERSION: 3.31.10

.github/workflows/documentation.yml

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

89
env:
910
CMAKE_VERSION: 3.31.10

.github/workflows/macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: macOS
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
workflow_dispatch:
67

78
env:
89
CMAKE_VERSION: 3.31.10

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Ubuntu
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
workflow_dispatch:
67

78
env:
89
CMAKE_VERSION: 3.31.10

.github/workflows/windows-msvc.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Windows Visual Studio
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
workflow_dispatch:
67

78
env:
89
CMAKE_VERSION: 3.31.10

.github/workflows/windows-msys2.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Windows MSYS2
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
workflow_dispatch:
67

78
env:
89
CMAKE_VERSION: 3.31.10

0 commit comments

Comments
 (0)