-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Renovate configuration and workflow * Refactor GitHub Actions workflows and dependencies * Refactor dependabot.yml and remove unused configuration file * Refactor Renovate configuration and disable updating pinned dependencies
- Loading branch information
1 parent
39d0fa4
commit db9d97e
Showing
5 changed files
with
57 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:best-practices", | ||
"schedule:earlyMondays", | ||
":preserveSemverRanges", | ||
"customManagers:biomeVersions" | ||
], | ||
"dependencyDashboard": true, | ||
"postUpdateOptions": ["pnpmDedupe"], | ||
"ignorePaths": ["**/node_modules/**", "**/bower_components/**"], | ||
"labels": ["dependencies"], | ||
"additionalBranchPrefix": "{{parentDir}}-", | ||
"gitIgnoredAuthors": ["[email protected]"], | ||
"prHourlyLimit": 3, | ||
"rangeStrategy": "bump", | ||
"updatePinnedDependencies": false, | ||
"packageRules": [ | ||
{ | ||
"matchDepTypes": ["peerDependencies"], | ||
"enabled": false | ||
}, | ||
{ | ||
"matchDepTypes": ["packageManager", "engines"], | ||
"enabled": false | ||
}, | ||
{ | ||
"matchFileNames": [".node-version"], | ||
"enabled": false | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Add changeset to Renovate updates | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, labeled] | ||
|
||
jobs: | ||
renovate: | ||
name: Update Renovate PR | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'dependencies') | ||
|
||
steps: | ||
- name: Update PR | ||
uses: mscharley/dependency-changesets-action@b73462eb4c2cf1fe16a8d9d681932fd05eea5c9f # v1.1.1 | ||
with: | ||
token: ${{ secrets.STUDIOCMS_SERVICE_TOKEN }} | ||
use-conventional-commits: true | ||
author-name: StudioCMS | ||
author-email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters