-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (43 loc) · 1.19 KB
/
sync.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
50
51
52
53
name: Sync
on:
schedule:
- cron: '0 0 * * *' # every day
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install deps
run: bun i
- name: Sync
run: bun run sync
- name: Test
run: bun run test
- name: Format
run: bun run format
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_TOKEN }}
- name: Awesome
run: bun run awesome
- 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 sync plugin" || exit 0
git push
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}