We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae16381 commit 9e55ea4Copy full SHA for 9e55ea4
2 files changed
.github/workflows/pre-prepare.yml
@@ -6,6 +6,10 @@ on:
6
target-branch:
7
description: name of the branch that contains the desired changes
8
required: true
9
+ run:
10
+ description: whether or not to run the workflow
11
+ required: true
12
+ type: boolean
13
workflow_run:
14
workflows: ["Create release PR"]
15
types:
.github/workflows/release.yml
@@ -52,4 +52,7 @@ jobs:
52
--base main \
53
--head release/${{ inputs.version }}
54
env:
55
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56
+ outputs:
57
+ target-branch: release/${{ github.event.inputs.version }}
58
+ run: ${{ github.event.inputs.update-language-server}}
0 commit comments