Skip to content

feat(cli): add dub modify --into stack branch workflow #88

feat(cli): add dub modify --into stack branch workflow

feat(cli): add dub modify --into stack branch workflow #88

Workflow file for this run

name: Merge Order Guard
on:
pull_request:
types: [opened, reopened, synchronize, edited, ready_for_review]
jobs:
merge-order:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter=dubstack build
- name: Validate DubStack merge order
env:
GH_TOKEN: ${{ github.token }}
run: node packages/cli/dist/index.js merge-check --pr ${{ github.event.pull_request.number }}