Skip to content

fix: set canary release on demand #417

fix: set canary release on demand

fix: set canary release on demand #417

Workflow file for this run

name: Pull Request
on:
workflow_dispatch:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
changeset:
name: Changeset
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # important: full history, otherwise no common ancestor
ref: ${{ github.head_ref || github.ref_name }}
- name: Fetch base branch
shell: bash
run: |
git fetch origin ${{ github.base_ref }}:${{ github.base_ref }}
- name: Setup Repository
uses: ./.github/actions/setup
- name: Ensure Changeset Added
shell: bash
run: pnpm changeset status --since=${{ github.base_ref }}
verify:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
with:
run-acceptance: false