Prepare Release PR #8
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: Prepare Release PR | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseType: | |
description: 'The type of release to prepare a PR for.' | |
required: true | |
type: choice | |
default: 'stable' | |
options: | |
- stable | |
- alpha | |
- beta | |
- rc | |
permissions: {} # we use a personal access token to push the branch and create the PR | |
jobs: | |
prepare_release_pr: | |
name: Prepare Release PR | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
- name: Set node version to 22 | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version: 22 | |
cache: 'pnpm' | |
- name: Install deps | |
run: pnpm install | |
env: | |
CYPRESS_INSTALL_BINARY: 0 | |
- name: Run release | |
run: | | |
git config user.name "FakerJS Bot" | |
git config user.email "[email protected]" | |
if [ $RELEASE_TYPE = 'stable' ]; then | |
pnpm run release | |
else | |
pnpm run release --prerelease $RELEASE_TYPE | |
fi | |
RELEASE_VERSION=$(jq -r '.version' package.json) | |
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | |
env: | |
RELEASE_TYPE: ${{ github.event.inputs.releaseType }} | |
- name: Switch to and push release branch | |
run: | | |
RELEASE_BRANCH="chore/release/$RELEASE_VERSION" | |
echo "RELEASE_BRANCH=$RELEASE_BRANCH" >> $GITHUB_ENV | |
git switch -c $RELEASE_BRANCH | |
git push origin $RELEASE_BRANCH -f | |
- name: Create draft PR | |
run: | | |
gh pr create \ | |
--base $GITHUB_REF_NAME \ | |
--head $RELEASE_BRANCH \ | |
--draft \ | |
--title "chore(release): $RELEASE_VERSION" \ | |
--body " | |
Release for $RELEASE_VERSION | |
- [ ] Completed manual changes/tasks for this release | |
--- | |
- Checklist: TODO add link to issue | |
" | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |