Skip to content

Commit e798924

Browse files
committed
Merge branch '3.5.x'
Closes gh-46507
2 parents 06f66a8 + aed8550 commit e798924

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
@@ -124,6 +124,7 @@ jobs:
124124
- name: Create GitHub Release
125125
uses: ./.github/actions/create-github-release
126126
with:
127+
commercial: ${{ vars.COMMERCIAL }}
127128
milestone: ${{ needs.build-and-stage-release.outputs.version }}
128129
pre-release: true
129130
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)