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 .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ updates:
schedule:
interval: weekly
groups:
# Only minor and patch updates are safe to batch. Grouping majors here
# once produced a single PR carrying ten breaking upgrades (tailwindcss 4,
# zod 4, typescript 7 and more), which could not be reviewed or landed as
# one unit. Majors now arrive as individual PRs.
npm-dependencies:
patterns:
- "*"
update-types:
- minor
- patch

- package-ecosystem: github-actions
directory: /
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ jobs:
steps:
- uses: googleapis/release-please-action@v5
id: release
with:
# GitHub does not start workflow runs for pull requests opened with the
# default GITHUB_TOKEN, so the required lint-and-test check never ran on
# release PRs and every one of them sat permanently BLOCKED. A PAT makes
# the PR look author-created, which starts the checks. Falls back to the
# default token so the workflow still runs if the secret is absent.
token: ${{ secrets.RELEASE_PLEASE_TOKEN || secrets.GITHUB_TOKEN }}

publish-npm:
needs: release-please
Expand Down
Loading