Skip to content

feat(changeset): add git keep file #2

feat(changeset): add git keep file

feat(changeset): add git keep file #2

name: Sync Changeset Version
on:
push:
branches:
- develop
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
changesets:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 20000
fetch-tags: true
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm i
- name: Create or Update Release Pull Request
uses: ./scripts/src/changeset
with:
log-level: action
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HUSKY: '0'