diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml new file mode 100644 index 0000000000..0946210d9d --- /dev/null +++ b/.github/workflows/pre-release.yml @@ -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 'infra@kasten.io' + 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 }} + diff --git a/.goreleaser.yml b/.goreleaser.yml index f910906da6..259ea52b9c 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -153,5 +153,6 @@ changelog: exclude: - '^docs:' - '^test:' + - '^pre-release:' archives: - allow_different_binary_count: true