Create workflow for ForgeJo actions
renovate / renovate (push) Has been cancelled Details
ci/woodpecker/push/renovate Pipeline was successful Details

This commit is contained in:
SeanOMik 2024-06-13 19:47:02 -04:00
parent 2a93149dc7
commit b413bbfb98
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
name: renovate
on:
push:
workflow_dispatch:
schedule:
- cron: "* */4 * * *"
jobs:
renovate:
runs-on: docker
container: ghcr.io/renovatebot/renovate:37.146.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Validate config
run: |
renovate-config-validator
- name: Self-hosted Renovate
run:
renovate
env:
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.PERSONAL_TOKEN_GITHUB }}