Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit f6ee11d

Browse files
committed
Add manual workflow dispatch to Docker image workflows
Enable manual triggering for api-push, package-push, and repo-push workflows via the GitHub Actions UI by adding the workflow_dispatch event alongside push on master. This allows running these workflows on demand.
1 parent fb04de0 commit f6ee11d

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/api-push.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Publish API image
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- master

.github/workflows/package-push.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 'Package Pushed'
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- master

.github/workflows/repo-push.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Publish Repo image
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- master

0 commit comments

Comments
 (0)