This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ‘ฉโ€๐Ÿ’ปโ€ Auto format and lint on main

+31
+31
.github/workflows/fixup.yml
··· 1 + name: Fixups 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + branches: 7 + - main 8 + 9 + jobs: 10 + fixup: 11 + name: Format and fix lints 12 + runs-on: ubuntu-latest 13 + steps: 14 + - uses: actions/checkout@v5 15 + with: 16 + ssh-key: ${{ secrets.AUTOCOMMIT_KEY }} 17 + - uses: actions-rs/toolchain@v1 18 + with: { toolchain: stable } 19 + - uses: Swatinem/rust-cache@v2 20 + - uses: actions-rs/cargo@v1 21 + with: { command: fix, args: --workspace } 22 + - name: Commit changes 23 + uses: stefanzweifel/git-auto-commit-action@v4 24 + with: 25 + commit_message: "๐Ÿšจ Fix lints" 26 + - uses: actions-rs/cargo@v1 27 + with: { command: fmt, args: --all } 28 + - name: Commit changes 29 + uses: stefanzweifel/git-auto-commit-action@v4 30 + with: 31 + commit_message: "๐ŸŽจ Format code"