Skip to content

Commit a8dcdcd

Browse files
committed
Update orchestrate to accept multiple branches as an input
1 parent 1d8a7c3 commit a8dcdcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/orchestrate.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
- cron: '0 0 * * *'
88
workflow_dispatch:
99
inputs:
10-
branch:
11-
description: "Which branch should be built (empty for current branch)"
10+
branches:
11+
description: "Which branch should be built (single branch or comma-separated list)"
1212
required: false
1313
default: 'main'
1414
type: string
@@ -32,7 +32,7 @@ jobs:
3232
repository: ${{ github.repository }}
3333
event-name: ${{ github.event_name }}
3434
ref-name: ${{ github.ref_name }}
35-
branch: ${{ inputs.branch }}
35+
branches: ${{ inputs.branches }}
3636

3737
build-and-test:
3838
name: Build and test with JDK ${{ matrix.java-version }}

0 commit comments

Comments
 (0)