Skip to content
Closed
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
9 changes: 9 additions & 0 deletions .changeset/add-skip-changeset-label.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@offckb/cli": patch
---

Add skip-changeset label support to changeset-check CI workflow

PRs with the 'skip-changeset' label will now bypass the changeset requirement.
This is useful for documentation, CI, and refactoring changes that don't need
a changelog entry.
2 changes: 0 additions & 2 deletions .changeset/perky-rooms-tan.md

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/changeset-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
changeset:
name: Require changeset
runs-on: ubuntu-latest
# Skip changeset check for PRs with 'skip-changeset' label
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-changeset') }}

steps:
- name: Checkout repository
Expand Down
Loading