Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rapid-cycles-flow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"brand-shell": minor
---

Reduce release cycle time by skipping full CI verification on Changesets-generated release PRs and relying on a targeted pack+starter canary gate.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
conventional-commits:
name: Conventional Commits + Bump Policy
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.pull_request.title, 'chore(release):') }}

steps:
- name: Checkout
Expand Down Expand Up @@ -41,12 +42,11 @@ jobs:
- conventional-commits
uses: ./.github/workflows/verify.yml
secrets: inherit
if: ${{ !startsWith(github.event.pull_request.title, 'chore(release):') }}

pack-starter-canary:
name: Pack + Starter Canary (release PRs)
runs-on: ubuntu-latest
needs:
- conventional-commits
if: >-
github.event_name == 'pull_request' &&
startsWith(github.event.pull_request.title, 'chore(release):')
Expand Down Expand Up @@ -94,6 +94,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- conventional-commits
if: ${{ !startsWith(github.event.pull_request.title, 'chore(release):') }}
outputs:
storybook: ${{ steps.filter.outputs.storybook }}

Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,9 @@ on:
workflow_dispatch:

jobs:
verify:
uses: ./.github/workflows/verify.yml
secrets: inherit

release:
name: Version & Publish
runs-on: ubuntu-latest
needs:
- verify
permissions:
contents: write
pull-requests: write
Expand Down