-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (39 loc) · 1.21 KB
/
renovate.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Renovate
on:
# “At minute 0 past every 6th hour.”
schedule:
- cron: "0 */6 * * *"
push:
branches:
- master
workflow_dispatch: {}
permissions:
contents: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-24.04
if: ${{ github.repository == 'chgl/charts' }}
steps:
- uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
id: app-token
with:
app-id: ${{ secrets.RENOVATE_APP_ID }}
private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: |
charts
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Self-hosted Renovate
uses: renovatebot/github-action@80eaf969abf68ad62aa94d9ab392421b31621634 # v40.3.4
with:
token: "${{ steps.app-token.outputs.token }}"
configurationFile: .renovaterc.json
mount-docker-socket: true
env:
LOG_LEVEL: "debug"
RENOVATE_REPOSITORIES: "${{ github.repository }}"
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: ".*"