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
7 changes: 7 additions & 0 deletions .changeset/fix-release-pr-changeset-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@scope3/agentic-client": patch
---

Fix changeset check workflow to exempt release PRs

Release PRs created by changesets/action are now properly exempted from the changeset requirement check, preventing false failures in CI.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Automatically request review from agentic-eng team for all files
* @scope3data/agentic-eng
6 changes: 6 additions & 0 deletions .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:

- name: Check for changeset
run: |
# Skip changeset check for release PRs created by changesets/action
if [[ "${{ github.head_ref }}" == changeset-release/* ]] || [[ "${{ github.event.pull_request.title }}" == "chore: version packages" ]]; then
echo "⏭️ Skipping changeset check for release PR"
exit 0
fi

if [ -z "$(ls -A .changeset/*.md 2>/dev/null | grep -v README)" ]; then
echo "❌ No changeset found. Please add a changeset by running 'npm run changeset'"
echo ""
Expand Down