Skip to content

Commit

Permalink
Merge pull request #1051 from atc0005/i1045-enable-on-demand-ghaws
Browse files Browse the repository at this point in the history
Enable on-demand GitHub Actions workflows
  • Loading branch information
atc0005 authored Jun 15, 2023
2 parents 98fbdc5 + cd7c11b commit 8ac6cdc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
pull_request:
types: [opened, synchronize]

# Allow workflow to be triggered manually.
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
workflow_dispatch:

jobs:
build_stable_image_using_makefile:
name: Build stable image using Makefile
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/project-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
# (whether force-pushed or not)
types: [opened, synchronize]

# Allow workflow to be triggered manually.
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
workflow_dispatch:

jobs:
lint:
name: Lint
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/scheduled-monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
# * * * * *
- cron: "30 4 1 * *"

# Allow workflow to be triggered manually.
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
workflow_dispatch:

jobs:
build_all_images_using_makefile:
name: Build all images using Makefile
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/scheduled-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
# * * * * *
- cron: "30 4 * * 0"

# Allow workflow to be triggered manually.
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
workflow_dispatch:

jobs:
lint:
name: Lint
Expand Down

0 comments on commit 8ac6cdc

Please sign in to comment.