fixup! Add website #1
Workflow file for this run
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
on: | ||
push: | ||
# 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: ${{ SEROKELL_BOT_PAT }} | ||
Check failure on line 13 in .github/workflows/update.yml GitHub Actions / .github/workflows/update.ymlInvalid workflow file
|
||
- name: update nixfmt input | ||
run: nix flake update nixfmt-src | ||
- name: commit flake.lock | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Update nixfmt input" | ||
file_pattern: "flake.lock" |