Create Release Branch 2.2 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release Branch | |
run-name: Create Release Branch ${{ inputs.version }} ${{ inputs.citag }} | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Release version. Format: <major>.<minor>' | |
required: true | |
citag: | |
description: 'Optional tag to identify runs via the API. Displayed in run name.' | |
required: false | |
default: '' | |
jobs: | |
release-branch: | |
uses: eclipse-set/build/.github/workflows/release-branch.yml@main | |
permissions: | |
contents: write | |
with: | |
version: ${{ inputs.version }} | |
target: "java/bundles/org.eclipse.set.releng.target/org.eclipse.set.releng.target.target" |