Renovate #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Renovate | |
on: | |
workflow_dispatch: | |
inputs: | |
log_level: | |
description: Log level | |
required: false | |
default: INFO | |
type: choice | |
options: | |
- DEBUG | |
- INFO | |
- WARN | |
- ERROR | |
- FATAL | |
issues: | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
if: ${{ (github.event_name == 'workflow_dispatch') || contains(github.event.ref, 'renovate') || (github.event.issue.number == 17) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install renovate | |
run: npm install -g renovate | |
- name: Echo repository | |
run: echo ${{ github.repository }} | |
- name: Run renovate | |
run: LOG_LEVEL=${{ github.event.inputs.log_level || 'DEBUG' }} renovate --token ${{ secrets.GITHUB_TOKEN }} ${{ github.repository }} |