Add forgejo action
/ renovate (push) Failing after 50s 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 1fbd1be1fc
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
on:
push:
schedule:
- cron: "* */4 * * *"
jobs:
renovate:
runs-on: docker
container:
image: 'renovate/renovate:37.146.0'
steps:
- name: Validate config
# unset from https://github.com/renovatebot/renovate/discussions/15049
run: |
unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
renovate-config-validator
- name: Renovate
run: |
unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
renovate
env:
# ForgeJo token used to authenticate as the renovate user
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
# token used to avoid rate limits when checking for version
GITHUB_COM_TOKEN: ${{ secrets.PERSONAL_TOKEN_GITHUB }}