Skip to content

Commit

Permalink
[ci] Add push trigger and workflow_dispatch trigger (#5383)
Browse files Browse the repository at this point in the history
  • Loading branch information
utpilla authored Feb 23, 2024
1 parent 88b6b0e commit f5b7f9c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Build

on:
workflow_dispatch:
# The push trigger would run the CI workflow when any changes get merged to main branch.
# The build badge on the main README uses the CI results on the main branch to report the build status.
push:
branches: [ 'main*' ]
pull_request:
branches: [ 'main*' ]

Expand Down

0 comments on commit f5b7f9c

Please sign in to comment.