Add .forgejo/workflows/renovate.yml
Some checks are pending
renovate / renovate (push) Waiting to run
Some checks are pending
renovate / renovate (push) Waiting to run
This commit is contained in:
parent
6fa96daa3b
commit
590c19ca86
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/renovate.yml
Normal file
23
.forgejo/workflows/renovate.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: renovate
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "@hourly"
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
workflow-dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
renovate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: ghcr.io/renovatebot/renovate:38.116.0
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: renovate
|
||||||
|
env:
|
||||||
|
RENOVATE_CONFIG_FILE: "/workspace/CoastalCommits/renovte-config/config.js"
|
||||||
|
LOG_LEVEL: "debug"
|
||||||
|
RENOVATE_TOKEN: ${ { secrets.RENOVATE_TOKEN }}
|
||||||
|
GITHUB_COM_TOKEN: ${ { secrets.RENOVATE_GITHUB_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue