release-dispatch #22
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: release-dispatch | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version to release | |
required: true | |
type: string | |
jobs: | |
propose-release: | |
permissions: | |
pull-requests: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Git | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org/" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.7.0 | |
- name: Update Workspace Packages Version | |
run: | | |
VERSION=${{ github.event.inputs.version }} | |
pnpm -r exec -- bash -c "npm version $VERSION --no-git-tag-version" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.CREATE_PR_TOKEN }} | |
title: "Prepare release: ${{ github.event.inputs.version }}" | |
commit-message: "Prepare release: ${{ github.event.inputs.version }}" | |
branch: "prepare-release" | |
base: main | |
delete-branch: true |