testing new config
This commit is contained in:
@@ -3,16 +3,25 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '0 3 * * *'
|
- cron: '0 3 * * *'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
# Step 1: Check out the repository so your config file is available
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/checkout@v4.1.1
|
||||||
|
|
||||||
|
# Step 2: Run the official Renovate action
|
||||||
- name: Self-hosted Renovate
|
- name: Self-hosted Renovate
|
||||||
uses: renovatebot/github-action@v40.1.2
|
uses: renovatebot/github-action@v40.1.2
|
||||||
with:
|
with:
|
||||||
|
# This token is required to allow Renovate to create Pull Requests
|
||||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
configurationFile: renovate-config.js
|
|
||||||
logLevel: debug
|
|
||||||
|
|
||||||
|
# Correctly specify the config file path relative to your repo root
|
||||||
|
# This action will handle mapping it into the container correctly.
|
||||||
|
configurationFile: renovate-config.js
|
||||||
|
|
||||||
|
# Optional: Set the log level for debugging
|
||||||
|
logLevel: debug
|
||||||
|
|||||||
Reference in New Issue
Block a user