Skip to content

Commit

Permalink
🔧 chore: Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 committed Jan 24, 2025
1 parent d1e9e82 commit 0b4dad9
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 "i@lobehub.com"
git add .
git commit -m "🤖 chore: Auto format and add i18n json files" || exit 0
git push
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,26 @@ jobs:
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 "i@lobehub.com"
git add .
git commit -m "🤖 chore: Auto format and add i18n json files" || exit 0
git push
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

- name: Awesome
run: bun run awesome

Expand Down

0 comments on commit 0b4dad9

Please sign in to comment.