initial pixelfed chart commit

This commit is contained in:
jessebot
2024-12-29 18:28:59 +01:00
commit 82408749a8
21 changed files with 1380 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
name: Renovate
on:
schedule:
# This should be every hour
- cron: '0 * * * *'
push:
branches:
- main
paths:
- ".github/renovate-config.json"
- ".github/workflows/renovate.yml"
- "renovate.json"
- "scripts/**"
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Get token
id: get_token
uses: tibdex/github-app-token@v2.1.0
with:
private_key: ${{ secrets.PRIVATE_KEY }}
app_id: ${{ secrets.APP_ID }}
- name: Checkout
uses: actions/checkout@v4.2.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.2.11
with:
token: '${{ steps.get_token.outputs.token }}'
configurationFile: .github/renovate-config.json
env:
LOG_LEVEL: 'debug'