-
-
Notifications
You must be signed in to change notification settings - Fork 1
28 lines (25 loc) · 854 Bytes
/
prepare-publish.yml
File metadata and controls
28 lines (25 loc) · 854 Bytes
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
name: Prepare Publish
on:
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish:
name: Prepare Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
cache: yarn
node-version-file: "package.json"
- name: Install
run: yarn install
- name: Create Release Pull Request
id: changesets
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf # v1
with:
version: yarn changeset:consume
commit: "meta(changelog): Update package versions"
title: "meta(changelog): Update package versions"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}