-
Notifications
You must be signed in to change notification settings - Fork 10
38 lines (36 loc) · 1.01 KB
/
prepare-release.yml
File metadata and controls
38 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Prepare Release
on:
workflow_dispatch:
inputs:
release_type:
description: 'Release type (major, minor, patch, next, or custom)'
required: true
type: choice
options:
- major
- minor
- patch
- next
- custom
custom_version:
description: 'Custom version (required if release_type is custom)'
required: false
type: string
branch:
description: 'Branch to use for the release repo (default: default branch)'
required: false
type: string
draft:
description: 'Create PR as draft'
required: false
type: boolean
default: false
jobs:
prepare-release:
uses: eclipse-glsp/glsp/.github/workflows/prepare-release.yml@master
with:
release_type: ${{ inputs.release_type }}
custom_version: ${{ inputs.custom_version }}
release_repo: glsp-vscode-integration
branch: ${{ inputs.branch }}
draft: ${{ inputs.draft }}