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 .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ version: 2
updates:
- package-ecosystem: npm
directory: /
labels:
- dependencies
schedule:
interval: monthly
groups:
Expand All @@ -10,6 +12,9 @@ updates:
open-pull-requests-limit: 2
- package-ecosystem: github-actions
directory: /
labels:
- dependencies
- skip-changelog
schedule:
interval: monthly
groups:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
github.event_name == 'pull_request' &&
!contains(github.event.pull_request.labels.*.name, 'skip-changelog') &&
!startsWith(github.head_ref, 'changeset-release/')
run: pnpm changeset status --since=origin/main
run: |
pnpm changeset status --since=origin/main --output=/tmp/changeset-status.json
jq -e '.releases | length > 0' /tmp/changeset-status.json >/dev/null
- name: Run package and documentation checks
run: pnpm exec turbo run build typecheck lint test:coverage check:exports
- name: Run repository checks
Expand Down