Skip to content
Draft
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
19 changes: 19 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"matchManagers": ["pip_requirements", "conda"],
"groupName": "Python dependencies",
"separateMajorMinor": false
},
{
"matchManagers": ["github-actions"],
"groupName": "GitHub actions",
"separateMajorMinor": false
}
],
"dependencyDashboard": true
// "onboarding": false, // TODO: reactivate later
// "requireConfig": "optional" // TODO: reactivate later
}
21 changes: 21 additions & 0 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: update_dependencies
on:
schedule:
- cron: "0 0 1 2 *" # 1st of February at 00:00 UTC
- cron: "0 0 1 8 *" # 1st of August at 00:00 UTC
push: # TODO: remove later, only for testing
jobs:
run_renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Run self-hosted Renovate
uses: renovatebot/github-action@v44.2.5
with:
# token: ${{ secrets.RENOVATE_TOKEN }}
token: ${{ secrets.RENOVATE_TOKEN_MY_QUEENS_FORK }}
env:
# RENOVATE_REPOSITORIES: "queens-py/queens"
RENOVATE_REPOSITORIES: "leahaeusel/queens"
RENOVATE_BRANCH_PREFIX: "renovate-action/"
Loading