-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 1.13 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
name: Renovate
on:
schedule:
- cron: "0 11 * * *"
push:
branches:
- master
workflow_dispatch: {}
permissions:
contents: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-24.04
if: ${{ github.repository == 'miracum/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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
fetch-depth: 0
- name: Self-hosted Renovate
uses: renovatebot/github-action@7743ec9e19ceeb61a3862c5d4131e6710195af11 # v40.3.3
with:
token: "${{ steps.app-token.outputs.token }}"
mount-docker-socket: true
env:
LOG_LEVEL: "debug"
RENOVATE_REPOSITORIES: "${{ github.repository }}"
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: ".*"