34 lines
1.3 KiB
YAML
34 lines
1.3 KiB
YAML
name: Run Renovate
|
|
on:
|
|
schedule:
|
|
- cron: '21 3 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/renovatebot/renovate:42.8.1@sha256:c9a5a60704ddfafae44a47b15dca1897e4e147fcb14c8b6d29ff8d3672ccf1d3
|
|
steps:
|
|
# Step 1: Check out the repository so your config file is available
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
# Step 2: Run the official Renovate action
|
|
- name: Self-hosted Renovate
|
|
# uses: renovatebot/github-action@v40.1.2
|
|
run: renovate
|
|
# with:
|
|
# # This token is required to allow Renovate to create Pull Requests
|
|
# token: ${{ secrets.RENOVATE_TOKEN }}
|
|
|
|
# # Correctly specify the config file path relative to your repo root
|
|
# # This action will handle mapping it into the container correctly.
|
|
# configurationFile: '/workspace/kovagoadi.hu/Renovate/renovate-config.js'
|
|
|
|
# # Optional: Set the log level for debugging
|
|
# logLevel: debug
|
|
env:
|
|
RENOVATE_CONFIG_FILE: "/workspace/kovagoadi.hu/Renovate/renovate-config.js"
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
|