File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed
Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3+ "extends" : [
4+ " config:base"
5+ ],
6+ "packageRules" : [
7+ {
8+ "matchManagers" : [" pip" , " conda" ],
9+ "groupName" : " Python dependencies"
10+ },
11+ {
12+ "matchManagers" : [" github-actions" ],
13+ "groupName" : " GitHub actions"
14+ }
15+ ],
16+ "dependencyDashboard" : true
17+ // "onboarding": false, // TODO: reactivate later
18+ // "requireConfig": "optional" // TODO: reactivate later
19+ }
Original file line number Diff line number Diff line change 1+ name : update_dependencies
2+ on :
3+ schedule :
4+ - cron : " 0 0 1 2 *" # 1st of February at 00:00 UTC
5+ - cron : " 0 0 1 8 *" # 1st of August at 00:00 UTC
6+ push : # TODO: remove later, only for testing
7+ jobs :
8+ run_renovate :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout
12+ uses : actions/checkout@v6.0.2
13+ - name : Run self-hosted Renovate
14+ uses : renovatebot/github-action@v44.2.5
15+ with :
16+ configurationFile : " .github/renovate_config.json"
17+ # token: ${{ secrets.RENOVATE_TOKEN }}
18+ token : ${{ secrets.RENOVATE_TOKEN_MY_QUEENS_FORK }}
19+ env :
20+ # RENOVATE_REPOSITORIES: "queens-py/queens"
21+ RENOVATE_REPOSITORIES : " leahaeusel/queens"
22+ RENOVATE_BRANCH_PREFIX : " renovate-action"
You can’t perform that action at this time.
0 commit comments