Skip to content

Commit aed8550

Browse files
committed
Merge branch '3.4.x' into 3.5.x
Closes gh-46506
2 parents 116a23c + 5406976 commit aed8550

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/actions/create-github-release/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Create GitHub Release
22
description: 'Create the release on GitHub with a changelog'
33
inputs:
4+
commercial:
5+
description: 'Whether to generate the changelog for the commercial release'
6+
required: true
47
milestone:
58
description: 'Name of the GitHub milestone for which a release will be created'
69
required: true
@@ -11,9 +14,6 @@ inputs:
1114
token:
1215
description: 'Token to use for authentication with GitHub'
1316
required: true
14-
commercial:
15-
description: 'Whether to generate the changelog for the commercial release'
16-
required: true
1717
runs:
1818
using: composite
1919
steps:

.github/workflows/release-milestone.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
- name: Create GitHub Release
9090
uses: ./.github/actions/create-github-release
9191
with:
92+
commercial: ${{ vars.COMMERCIAL }}
9293
milestone: ${{ needs.build-and-stage-release.outputs.version }}
9394
pre-release: true
9495
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,6 @@ jobs:
172172
- name: Create GitHub Release
173173
uses: ./.github/actions/create-github-release
174174
with:
175+
commercial: ${{ vars.COMMERCIAL }}
175176
milestone: ${{ needs.build-and-stage-release.outputs.version }}
176177
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
177-
commercial: ${{ vars.COMMERCIAL }}

0 commit comments

Comments
 (0)