Skip to content

Commit c8c2af3

Browse files
committed
ci: add workflow_dispatch trigger for DAG orchestration
1 parent 7e7fb13 commit c8c2af3

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,15 @@ on:
44
branches: [develop]
55
pull_request:
66
branches: [develop, main]
7+
workflow_dispatch:
8+
inputs:
9+
triggered-by:
10+
description: 'Orchestrator run ID'
11+
required: false
12+
type: string
713
jobs:
814
build:
915
uses: fireflyframework/.github/.github/workflows/java-ci.yml@main
1016
with:
1117
java-version: '25'
18+

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Release
22
on:
33
push:
44
tags: ['v*']
5+
workflow_dispatch:
6+
inputs:
7+
triggered-by:
8+
description: 'Orchestrator run ID'
9+
required: false
10+
type: string
511
jobs:
612
release:
713
uses: fireflyframework/.github/.github/workflows/java-release.yml@main
@@ -10,3 +16,4 @@ jobs:
1016
permissions:
1117
contents: write
1218
packages: write
19+

0 commit comments

Comments
 (0)