-
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.
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
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,14 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"dependencyDashboard": true, | ||
"groupName": "all dependencies", | ||
"groupSlug": "all", | ||
"packageRules": [ | ||
{ | ||
"groupName": "all dependencies", | ||
"groupSlug": "all", | ||
"matchPackagePatterns": ["*"] | ||
} | ||
], | ||
"labels": ["dependencies"] | ||
} |
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,27 @@ | ||
name: Update dependencies | ||
|
||
on: | ||
# push: | ||
# branches: | ||
# - main | ||
schedule: | ||
- cron: '7 0 * * 1' | ||
|
||
concurrency: | ||
group: any | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
update-dependencies: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write # Requires also "Allow GitHub Actions to create and approve pull requests" to be enabled in the repository settings | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
# - env: | ||
# LOG_LEVEL: debug | ||
- run: npx renovate --token ${{ secrets.GITHUB_TOKEN }} --platform github --autodiscover |