chore: upgrade dependencies #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: Pull Request | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: # target branch | |
- master | |
jobs: | |
create-pull-request: | |
# triggered when a branch starts with feat/* has been merged into master | |
if: github.event.pull_request.merged && startsWith(github.head_ref, 'feat/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
run_install: true | |
- name: Version Package | |
id: versioning | |
run: | | |
npx changeset version | |
echo "::set-output name=tag::v$(node -pe "require('./package.json').version")" | |
git restore . | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
commit: "chore: release ${{ steps.versioning.outputs.tag }}" | |
title: "chore: release ${{ steps.versioning.outputs.tag }}" | |