Skip to content

Allow changesets on other branches #29

Allow changesets on other branches

Allow changesets on other branches #29

Workflow file for this run

name: Changesets
on:
push:
branches:
- main
- 4.5.x
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
changesets:
name: Changesets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
- uses: ./.github/workflows/actions/prepare
- id: changesets
name: Create release Pull Request or publish to NPM
uses: changesets/action@v1
with:
publish: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}