-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 976 Bytes
/
fmt.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Rustfmt
on: [push, pull_request, merge_group]
permissions:
contents: write
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout/@v4
- uses: dtolnay/rust-toolchain@master
with:
# my rustfmt config use many nightly features
toolchain: nightly
components: rustfmt, cargo
- name: Run fmt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMIT_MSG: |
fmt: with nightly rustfmt
run: |
cargo +nightly fmt --all
git config user.email "actions@github"
git config user.name "Github Actions"
git remote set-url origin https://x-access-token:"${GITHUB_TOKEN}"@github.com/"${GITHUB_REPOSITORY}".git
git add crates/
# shellcheck disable=SC2015
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin HEAD:"${GITHUB_REF}")