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
15 changes: 0 additions & 15 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
ref: ${{ github.head_ref }}

- uses: pnpm/action-setup@v4
with:
version: 10.33.4

- uses: actions/setup-node@v4
with:
Expand All @@ -42,16 +40,3 @@ jobs:
TIGRIS_STORAGE_SECRET_ACCESS_KEY: ${{ secrets.TIGRIS_STORAGE_SECRET_ACCESS_KEY }}
TIGRIS_STORAGE_ENDPOINT: ${{ secrets.TIGRIS_STORAGE_ENDPOINT }}
run: pnpm -r --if-present run test

- name: Detect package changes
id: pkg-changed
run: |
if git diff --name-only origin/main...HEAD | grep -qE '^(packages/|shared/)'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
else
echo "changed=false" >> "$GITHUB_OUTPUT"
fi

- name: Verify changeset present
if: steps.pkg-changed.outputs.changed == 'true'
run: pnpm changeset status --since=origin/main
2 changes: 0 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
fetch-depth: 0

- uses: pnpm/action-setup@v4
with:
version: 10.33.4

- uses: actions/setup-node@v4
with:
Expand Down
105 changes: 105 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommitScope(deps)",
":maintainLockFilesWeekly",
"schedule:weekly"
],
"prHourlyLimit": 4,
"prConcurrentLimit": 10,
"rebaseWhen": "behind-base-branch",
"dependencyDashboard": true,
"osvVulnerabilityAlerts": true,
"vulnerabilityAlerts": {
"schedule": ["at any time"]
},
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 6am on monday"]
},
"postUpdateOptions": ["pnpmDedupe"],
"packageRules": [
{
"description": "Throttle major-version updates to every two weeks",
"matchUpdateTypes": ["major"],
"schedule": ["every 2 weeks on monday before 6am"]
},
{
"description": "Group AWS SDK + S3 + Smithy ecosystem into one PR",
"matchPackageNames": [
"/^@aws-sdk\\//",
"/^@aws-crypto\\//",
"/^@smithy\\//"
],
"groupName": "aws-sdk"
},
{
"description": "Group Changesets tooling",
"matchPackageNames": ["/^@changesets\\//"],
"groupName": "changesets"
},
{
"description": "Group commitlint + commitizen",
"matchPackageNames": [
"commitizen",
"cz-conventional-changelog",
"/^@commitlint\\//"
],
"groupName": "commitlint"
},
{
"description": "Group Biome",
"matchPackageNames": ["/^@biomejs\\//"],
"groupName": "biome"
},
{
"description": "Group React ecosystem (peer + test deps)",
"matchPackageNames": [
"react",
"react-dom",
"@types/react",
"@types/react-dom",
"@testing-library/react",
"@testing-library/jest-dom",
"jsdom"
],
"groupName": "react"
},
{
"description": "Group Keyv",
"matchPackageNames": ["keyv", "/^@keyv\\//"],
"groupName": "keyv"
},
{
"description": "Group all GitHub Actions into one PR",
"matchManagers": ["github-actions"],
"groupName": "github-actions"
},
{
"description": "Group pnpm bumps (packageManager field + workflows)",
"matchPackageNames": ["pnpm"],
"groupName": "pnpm"
},
{
"description": "Auto-merge devDependency patches and minors after CI passes",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Auto-merge GitHub Actions patches and minors",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Auto-merge weekly lockfile maintenance",
"matchUpdateTypes": ["lockFileMaintenance"],
"automerge": true,
"automergeType": "pr"
}
]
}
Loading