mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
feat(renovate): add renovate configuration files for automated dependency management
This commit is contained in:
parent
8d942e0942
commit
3635eb165b
2 changed files with 172 additions and 0 deletions
34
.github/workflows/renovate.yml
vendored
Normal file
34
.github/workflows/renovate.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Renovate
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# Run every Monday at 8:00 AM UTC
|
||||
- cron: "0 8 * * 1"
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
logLevel:
|
||||
description: "Log level"
|
||||
required: false
|
||||
default: "info"
|
||||
type: choice
|
||||
options:
|
||||
- info
|
||||
- debug
|
||||
- trace
|
||||
|
||||
env:
|
||||
LOG_LEVEL: ${{ inputs.logLevel || 'info' }}
|
||||
|
||||
jobs:
|
||||
renovate:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Renovate
|
||||
uses: renovatebot/github-action@v42.0.4
|
||||
with:
|
||||
configurationFile: renovate.json
|
||||
env:
|
||||
LOG_LEVEL: ${{ env.LOG_LEVEL }}
|
Loading…
Add table
Add a link
Reference in a new issue