Skip to content

Commit b515c20

Browse files
committed
ci: enforce addition of changesets
1 parent 5aa5933 commit b515c20

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
jobs:
14+
check-changeset:
15+
name: Check changeset
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
20+
21+
- name: Setup
22+
uses: ./.github/actions/setup
23+
24+
- name: Check changeset
25+
if: github.ref != 'refs/heads/main'
26+
run: yarn changeset status --since=origin/${{ github.base_ref }}
27+
1428
build-lint:
1529
name: Build & static code analysis
1630
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)