Add workflow to update flake inputs

This commit is contained in:
Pedro Rey Anca 2025-08-21 19:54:07 +02:00
parent df874049af
commit 114f28353c

View file

@ -0,0 +1,25 @@
name: Update Flake Inputs
on:
schedule:
# Run weekly on Sunday at 4:00 AM UTC
- cron: "0 */5 * * *"
workflow_dispatch:
repository_dispatch:
jobs:
update-flake-inputs:
runs-on: docker
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update flake inputs
uses: Mic92/update-flake-inputs-gitea@main
with:
git-author-name: "frues-bot"
git-committer-name: "frues-bot"
git-author-email: "frues-bot@git.peprolinbot.com"
git-committer-email: "frues-bot@git.peprolinbot.com"
gitea-token: ${{ secrets.FORGEJO_TOKEN }}