-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1.07 KB
/
renovate.yml
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
name: Renovate
on:
schedule:
- cron: '1 9 * * 1' # Run every Monday at 9:01 AM
workflow_dispatch: # Allow manual triggering
push:
branches:
- main
paths:
- 'composer.json'
- 'composer.lock'
- 'renovate-gh.json'
- '.github/workflows/renovate.yml'
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Validate Renovate config
uses: suzuki-shunsuke/[email protected]
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
env:
RENOVATE_GIT_AUTHOR: 'salsadeploy <[email protected]>'
RENOVATE_DEPENDENCY_DASHBOARD_TITLE: 'Renovate Dependency Dashboard'
RENOVATE_DEPENDENCY_DASHBOARD: true
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_PLATFORM: 'github'
RENOVATE_AUTODISCOVER: false
LOG_LEVEL: debug
with:
configurationFile: renovate-gh.json
token: ${{ secrets.RENOVATE_TOKEN }}