Create Release PR #29
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
name: Create Release PR | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
description: The released version without 'v'. For example, 1.0.0. | |
env: | |
VERSION: ${{ github.event.inputs.version }} | |
# todo: use the one for buf | |
APP_ID: 417207 | |
jobs: | |
prepare: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail if input version starts with 'v' | |
if: ${{ env.VERSION == '' || startsWith(env.VERSION, 'v') }} | |
run: | | |
echo "version '${{ env.VERSION}}' is invalid, it must not be empty or start with 'v'" | |
exit 1 | |
- name: Checkout repository code | |
uses: actions/checkout@v4 | |
- uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ env.APP_ID }} | |
private-key: ${{ secrets.TOKEN_EXCHANGE_GH_APP_PRIVATE_KEY }} | |
# temporarily skipped | |
# - name: setup-go | |
# uses: actions/setup-go@v4 | |
# with: | |
# go-version: "1.21.x" | |
# - name: Install Buf | |
# run: make installbuf | |
- name: Update Buf Version | |
run: make updateversion | |
- name: Update Changelog Version | |
run: make releasechangelog | |
- name: Create PR | |
uses: ./.github/actions/create-pr-action | |
id: create_pr | |
with: | |
branch: release/v${{ env.VERSION }} | |
commit_message: Update version to v${{ env.VERSION }} | |
title: Release v${{env.VERSION}} | |
body: | | |
Release prepared for ${{ env.VERSION }} | |
Reminder: Verify the changelog | |
token: ${{ steps.app-token.outputs.token }} | |
- run: echo "pr created at ${{ steps.create_pr.outputs.url }}" | |
# placeholder for slack notification |