Skip to content

Commit

Permalink
add changesets PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Trombach committed May 16, 2024
1 parent 1c67de5 commit 1925174
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Enable corepack
run: corepack Enable
- run: pnpm i
- name: Create Release PR
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1925174

Please sign in to comment.