-
-
Notifications
You must be signed in to change notification settings - Fork 178
49 lines (41 loc) · 1.26 KB
/
format.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
43
44
45
46
47
48
49
name: Format
on:
pull_request:
workflow_dispatch:
jobs:
update-i18n:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Install bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ secrets.BUN_VERSION }}
- name: Install deps
run: bun i
- name: Run format
continue-on-error: true
run: bun run format
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_PROXY_URL: ${{ secrets.OPENAI_PROXY_URL }}
- name: Prettier
run: |
echo "module.exports = require('@lobehub/lint').remarklint;" >> .remarkrc.cjs
echo "module.exports = require('@lobehub/lint').prettier;" >> .prettierrc.cjs
bun run lint:md
bun run prettier
rm .remarkrc.cjs
rm .prettierrc.cjs
- name: Commit changes
run: |-
git diff
git config --global user.name "lobehubbot"
git config --global user.email "[email protected]"
git add .
git commit -m "🤖 chore: Auto format and add i18n json files" || exit 0
git push
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}