forked from homeassistant-ai/ha-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 985 Bytes
/
Copy pathrenovate.yml
File metadata and controls
41 lines (37 loc) · 985 Bytes
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:
# Run every Tuesday at 15:00 UTC (after Dependabot on Monday)
- cron: '0 15 * * 2'
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'debug'
type: choice
options:
- debug
- info
- warn
- error
permissions:
contents: write
pull-requests: write
issues: write
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Self-hosted Renovate
uses: renovatebot/github-action@v46.0.2
with:
configurationFile: renovate.json
token: ${{ secrets.GITHUB_TOKEN }}
env:
LOG_LEVEL: ${{ inputs.logLevel || 'info' }}
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^cat.*", "^echo.*", "^cut.*", "^sed.*", "^git add.*"]'
RENOVATE_REPOSITORIES: ${{ github.repository }}