We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d8a7c3 commit a8dcdcdCopy full SHA for a8dcdcd
.github/workflows/orchestrate.yaml
@@ -7,8 +7,8 @@ on:
7
- cron: '0 0 * * *'
8
workflow_dispatch:
9
inputs:
10
- branch:
11
- description: "Which branch should be built (empty for current branch)"
+ branches:
+ description: "Which branch should be built (single branch or comma-separated list)"
12
required: false
13
default: 'main'
14
type: string
@@ -32,7 +32,7 @@ jobs:
32
repository: ${{ github.repository }}
33
event-name: ${{ github.event_name }}
34
ref-name: ${{ github.ref_name }}
35
- branch: ${{ inputs.branch }}
+ branches: ${{ inputs.branches }}
36
37
build-and-test:
38
name: Build and test with JDK ${{ matrix.java-version }}
0 commit comments