Skip to content

Commit

Permalink
Allow triggering CI manually (#3391)
Browse files Browse the repository at this point in the history
This is helpful to check if CI issues reproduce on the main branch.
  • Loading branch information
pquentin committed May 10, 2024
1 parent 5239265 commit f3bdc55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

permissions: "read-all"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches: ["main"]
schedule:
- cron: "0 0 * * 5"
workflow_dispatch:

permissions: "read-all"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Downstream

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

permissions: "read-all"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: lint

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

permissions: "read-all"

Expand Down

0 comments on commit f3bdc55

Please sign in to comment.