forked from cataclysmbnteam/Cataclysm-BN
-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (30 loc) · 946 Bytes
/
autofix.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
34
35
36
37
38
39
40
41
42
name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
paths: ["**.json", "**.cpp", "**.hpp", "**.h", "**.c", "**.md", "**.ts"]
permissions:
contents: read
jobs:
autofix:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install astyle
- run: sudo pip install cmakelang
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: format C++ files
run: make astyle
- name: format markdown and typescript files
run: deno fmt
- name: format CMake files
run: make cmake-format
- name: json formatting
run: make style-all-json-parallel RELEASE=1
- uses: autofix-ci/action@8caa572fd27b0019a65e4c695447089c8d3138b9
if: ${{ always() }}
with:
commit-message: "style(autofix.ci): automated formatting"