Update Renovate workflow according to changes in antville/helma
This commit is contained in:
parent
a000ac92be
commit
342b29e627
1 changed files with 7 additions and 7 deletions
14
.github/workflows/renovate.yml
vendored
14
.github/workflows/renovate.yml
vendored
|
|
@ -14,28 +14,28 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Run Renovate
|
- name: Run Renovate
|
||||||
run: npx renovate
|
# See <https://docs.renovatebot.com/troubleshooting/#log-debug-levels>
|
||||||
|
# debug | info | warn | error | fatal
|
||||||
|
run: LOG_LEVEL=info npx renovate
|
||||||
env:
|
env:
|
||||||
# Renovate is using this token to retrieve release notes
|
# Renovate is using this token to retrieve release notes
|
||||||
GITHUB_COM_TOKEN: ${{ secrets.renovate_github_com_token }}
|
GITHUB_COM_TOKEN: ${{ secrets.renovate_github_com_token }}
|
||||||
# See <https://docs.renovatebot.com/troubleshooting/#log-debug-levels>
|
|
||||||
LOG_LEVEL: info # debug | info | warn | error | fatal
|
|
||||||
RENOVATE_AUTODISCOVER: 'true'
|
|
||||||
RENOVATE_CONFIG_FILE: renovate.json
|
RENOVATE_CONFIG_FILE: renovate.json
|
||||||
RENOVATE_ENDPOINT: ${{ github.api_url }}
|
RENOVATE_ENDPOINT: ${{ github.api_url }}
|
||||||
RENOVATE_GIT_AUTHOR: Renovate Bot <mail+renovate@antville.org>
|
RENOVATE_GIT_AUTHOR: Renovate Bot <mail+renovate@antville.org>
|
||||||
#RENOVATE_GIT_IGNORED_AUTHORS:
|
|
||||||
# - 29139614+renovate[bot]@users.noreply.github.com
|
|
||||||
RENOVATE_IGNORE_PR_AUTHOR: 'true'
|
RENOVATE_IGNORE_PR_AUTHOR: 'true'
|
||||||
RENOVATE_LOG_FILE: renovate-log.ndjson
|
RENOVATE_LOG_FILE: renovate-log.ndjson
|
||||||
RENOVATE_LOG_FILE_LEVEL: debug
|
RENOVATE_LOG_FILE_LEVEL: debug
|
||||||
RENOVATE_PLATFORM: gitea
|
RENOVATE_PLATFORM: gitea
|
||||||
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
||||||
RENOVATE_REPOSITORY_CACHE: 'enabled'
|
RENOVATE_REPOSITORY_CACHE: 'enabled'
|
||||||
# github.token is not working here, it lacks some permissions required by Renovate
|
# github.token is not working here, it lacks some permissions required by Renovate
|
||||||
RENOVATE_TOKEN: ${{ secrets.renovate_token }} #${{ github.token }}
|
RENOVATE_TOKEN: ${{ secrets.renovate_token }}
|
||||||
|
|
||||||
- name: Save log file
|
- name: Save log file
|
||||||
|
# FIXME: v4 of this action causes an error on Forgejo (“You must configure a GitHub token”)
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: renovate-log.ndjson
|
name: renovate-log.ndjson
|
||||||
path: renovate-log.ndjson
|
path: renovate-log.ndjson
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue