Skip to content

Commit f3bdc55

Browse files
authored
Allow triggering CI manually (#3391)
This is helpful to check if CI issues reproduce on the main branch.
1 parent 5239265 commit f3bdc55

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI
22

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

55
permissions: "read-all"
66

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches: ["main"]
88
schedule:
99
- cron: "0 0 * * 5"
10+
workflow_dispatch:
1011

1112
permissions: "read-all"
1213

.github/workflows/downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Downstream
22

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

55
permissions: "read-all"
66

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: lint
22

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

55
permissions: "read-all"
66

0 commit comments

Comments
 (0)