Skip to content

.github/workflows/update.yml #230

.github/workflows/update.yml

.github/workflows/update.yml #230

Workflow file for this run

on:
schedule:
# runs every day at 10:00 am UTC
- cron: '0 10 * * *'
jobs:
update-nixfmt-input:
runs-on: [self-hosted, nix]
steps:
- uses: actions/checkout@v4
with:
token: ${{ env.SEROKELL_BOT_PAT }}
- name: update nixfmt input
run: nix flake lock --update-input nixfmt-src
- name: commit flake.lock
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_user_name: serokell-bot
commit_user_email: [email protected]
commit_author: serokell-bot <[email protected]>
commit_message: "Update nixfmt input"
file_pattern: "flake.lock"