Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
qrxnz committed Oct 23, 2024
1 parent bfde5b1 commit e574d67
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Format
on:
pull_request:
push:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest

permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install nix
uses: cachix/install-nix-action@v26
- name: Run nixfmt
run: nix fmt
- name: Get git status
run: git status
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "treewide: nixfmt formatting"
branch: ${{ github.head_ref }}

0 comments on commit e574d67

Please sign in to comment.