Skip to content

Commit

Permalink
ci: allow GitHub Actions workflows to be manually triggered
Browse files Browse the repository at this point in the history
This patch adds a 'workflow_dispatch' trigger to our three GitHub
Actions workflows. This allows us to trigger each workflow by navigating
to the repository's Actions tab, selecting the desired workflow, and
clicking on th 'Run workflow' button.

Signed-off-by: Vincent Fu <vincent.fu@samsung.com>
  • Loading branch information
vincentkfu committed Sep 27, 2024
1 parent e4e8520 commit 5fbafe8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI
on:
push:
pull_request:
workflow_dispatch:

jobs:
build-containers:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CIFuzz
on: [pull_request]
on: [pull_request, workflow_dispatch]
jobs:
Fuzzing:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
workflow_dispatch:
schedule:
- cron: "50 3 * * *" # daily at 4:50 UTC (00:50 EST)

Expand Down

0 comments on commit 5fbafe8

Please sign in to comment.