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
29 changes: 0 additions & 29 deletions .coderabbit.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@ updates:
commit-message:
prefix: "chore"
include: scope
# Only minor and patch updates by default — major bumps require manual
# review since they often break types or APIs (e.g. TypeScript 6 removed
# implicit Bun globals, @ai-sdk/openai 4 changed LanguageModel type).
update-types:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Move update-types into an allow or ignore rule

GitHub's Dependabot options reference documents update-types only as a parameter of allow, ignore, or groups, not as a package-ecosystem update key (https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#update-types--allow). With this indentation, Dependabot treats the npm update block as having an unsupported extra update-types property and won't process version updates, so the intended minor/patch-only policy disables this Dependabot config instead; put this under an allow rule or ignore version-update:semver-major for dependency-name: "*".

Useful? React with 👍 / 👎.

- "version-update:semver-minor"
- "version-update:semver-patch"
3 changes: 3 additions & 0 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ permissions:
jobs:
sonarcloud:
runs-on: ubuntu-latest
# Skip on Dependabot PRs — SONAR_TOKEN isn't available to fork PRs,
# causing "Not authorized" failures. Dependabot branches are forks.
if: github.event_name != 'pull_request' || !startsWith(github.head_ref, 'dependabot/')
Comment on lines +18 to +20
steps:
- uses: actions/checkout@v5
with:
Expand Down
Loading