-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
82 lines (69 loc) · 2.39 KB
/
prepare-release-pr.yml
File metadata and controls
82 lines (69 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: Install pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
- name: Set node version to 24
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24.15.0
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Run release
run: |
git config user.name "FakerJS Bot"
git config user.email "github-bot@fakerjs.dev"
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: |
RELEASE_CHECKLIST_URL="$(gh issue list --label 'c: release' --state open --limit 1 --json url --jq '.[0].url // "TODO add link to issue"')"
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: $RELEASE_CHECKLIST_URL
"
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}