-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(release): add pre-release workflow to creat version bump PR
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 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,48 @@ | ||
name: Pre release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_tag: | ||
description: 'Image tag in the format x.x.x' | ||
required: true | ||
type: string | ||
|
||
env: | ||
RELEASE_TAG: ${{ inputs.release_tag }} | ||
PRERELEASE_DOCS_BRANCH: 'dg8d45z' | ||
|
||
jobs: | ||
## TODO we can add a condition like github.actor.role == 'Maintainer' to limit trigger to maintainers only | ||
create_pr: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
steps: | ||
- name: checkout_repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-tags: true | ||
fetch-depth: 0 # necessary for CURRENT_TAG tracing | ||
- name: fetch_tags | ||
run: git fetch --tags origin | ||
- name: bump_version | ||
run: | | ||
export CURRENT_TAG=$(git describe --abbrev=0 --tags) | ||
echo ./build/bump_version.sh "${CURRENT_TAG}" "${RELEASE_TAG}" | ||
./build/bump_version.sh "${CURRENT_TAG}" "${RELEASE_TAG}" | ||
- name: commit_changes | ||
run: | | ||
git config --global user.name 'Kasten Production' | ||
git config --global user.email '[email protected]' | ||
git checkout -B "kan-docs-${PRERELEASE_DOCS_BRANCH}-${RELEASE_TAG}" | ||
git add -A | ||
git commit -s -m "pre-release: Update version to ${RELEASE_TAG}" | ||
- name: create_pr | ||
run: | | ||
git push origin "kan-docs-${PRERELEASE_DOCS_BRANCH}-${RELEASE_TAG}" | ||
gh pr create --title "pre-release: Update version to ${RELEASE_TAG}" --body "Update version to ${RELEASE_TAG}" --head "kan-docs-${PRERELEASE_DOCS_BRANCH}-${RELEASE_TAG}" --base master --reviewer tdmanv,pavannd1,viveksinghggits --label kueue | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
|
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 |
---|---|---|
|
@@ -153,5 +153,6 @@ changelog: | |
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
- '^pre-release:' | ||
archives: | ||
- allow_different_binary_count: true |