mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
23 lines
754 B
YAML
23 lines
754 B
YAML
name: Renovate
|
|
on:
|
|
schedule:
|
|
# Run every 2nd hour
|
|
- cron: '0 */2 * * *'
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.1.1
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@v39.2.1
|
|
with:
|
|
configurationFile: solr/renovate-config.js
|
|
renovate-version: 37.89-full
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
RENOVATE_FORK_TOKEN: ${{ secrets.RENOVATE_FORK_TOKEN }}
|
|
LOG_LEVEL: "info"
|
|
RENOVATE_DOCKER_USER: "1000:0"
|
|
RENOVATE_BINARY_SOURCE: "global"
|
|
RENOVATE_PR_FOOTER: "This PR has been generated by [Renovate Bot](https://github.com/solrbot/renovate-github-action)"
|