-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[repo] Release automation improvements (#1866)
- Loading branch information
1 parent
4ee07f4
commit 7c62f50
Showing
6 changed files
with
255 additions
and
169 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Complete release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
required: true | ||
description: 'Release tag' | ||
type: string | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
automation: | ||
uses: ./.github/workflows/automation.yml | ||
secrets: inherit | ||
|
||
post-release: | ||
runs-on: ubuntu-latest | ||
|
||
needs: | ||
- automation | ||
|
||
if: needs.automation.outputs.enabled | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets[needs.automation.outputs.token-secret-name] }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# Note: By default GitHub only fetches 1 commit. We need all the tags | ||
# for this work. | ||
fetch-depth: 0 | ||
ref: ${{ github.event.repository.default_branch }} | ||
token: ${{ secrets[needs.automation.outputs.token-secret-name] }} | ||
|
||
- name: Create GitHub Pull Request to update PackageValidationBaselineVersion in projects | ||
if: | | ||
(github.ref_type == 'tag' && !contains(github.ref_name, '-alpha') && !contains(github.ref_name, '-beta') && !contains(github.ref_name, '-rc')) | ||
|| (inputs.tag && !contains(inputs.tag, '-alpha') && !contains(inputs.tag, '-beta') && !contains(inputs.tag, '-rc')) | ||
shell: pwsh | ||
run: | | ||
Import-Module .\build\scripts\post-release.psm1 | ||
CreatePackageValidationBaselineVersionUpdatePullRequest ` | ||
-gitRepository '${{ github.repository }}' ` | ||
-tag '${{ inputs.tag || github.ref_name }}' ` | ||
-targetBranch '${{ github.event.repository.default_branch }}' ` | ||
-gitUserName '${{ needs.automation.outputs.username }}' ` | ||
-gitUserEmail '${{ needs.automation.outputs.email }}' |
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
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
Oops, something went wrong.