0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/.github/workflows/changesets.yml
Gao Sun b2b15723b5
chore: update changesets config (#3703)
chore: update changeset config
2023-04-17 16:22:39 +08:00

53 lines
1.4 KiB
YAML

name: Changesets
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
jobs:
changesets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_PAT }}
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v3
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.BOT_GPG_KEY }}
passphrase: ${{ secrets.BOT_GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_tag_gpgsign: true
- name: Configure Git user
run: |
git config --global user.email bot@silverhand.io
git config --global user.name silverhand-bot
- name: Version packages
run: |
node .scripts/version.js
pnpm i --no-frozen-lockfile
git status
- name: Create pull request
if: github.event_name == 'push'
uses: changesets/action@v1
with:
version: node .scripts/version.js && pnpm i --no-frozen-lockfile && git status
setupGitUser: false
commit: 'release: version packages'
title: 'release: version packages'
env:
GITHUB_TOKEN: ${{ secrets.BOT_PAT }}