Skip to content

Commit

Permalink
add workflow_dispatch trigger for manual run of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cjyetman authored Mar 11, 2024
1 parent 99947fc commit 7186a70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-Docker-image-triggers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches: [main]
schedule:
- cron: '0 0 * * 1,2,3,4,5'
workflow_dispatch:

jobs:
build_docker_image:
Expand All @@ -22,6 +23,7 @@ jobs:
github.event_name == 'pull_request' && format('{0}{1}','pr', github.event.pull_request.number) ||
github.event_name == 'schedule' && 'nightly' ||
github.event_name == 'push' && github.ref_name ||
github.event_name == 'workflow_dispatch' && github.ref_name ||
github.sha
}}
Expand Down

0 comments on commit 7186a70

Please sign in to comment.