repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | name: Format |
| #2 | |
| #3 | on: |
| #4 | pull_request: |
| #5 | workflow_dispatch: |
| #6 | |
| #7 | jobs: |
| #8 | update-i18n: |
| #9 | runs-on: ubuntu-latest |
| #10 | |
| #11 | steps: |
| #12 | - uses: actions/checkout@v4 |
| #13 | with: |
| #14 | ref: ${{ github.event.pull_request.head.ref }} |
| #15 | |
| #16 | - name: Install bun |
| #17 | uses: oven-sh/setup-bun@v1 |
| #18 | with: |
| #19 | bun-version: ${{ secrets.BUN_VERSION }} |
| #20 | |
| #21 | - name: Install deps |
| #22 | run: bun i |
| #23 | |
| #24 | - name: Run format |
| #25 | continue-on-error: true |
| #26 | run: bun run format |
| #27 | env: |
| #28 | OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |
| #29 | OPENAI_PROXY_URL: ${{ secrets.OPENAI_PROXY_URL }} |
| #30 | |
| #31 | - name: Run fix |
| #32 | continue-on-error: true |
| #33 | run: bun run i18n:fix |
| #34 | |
| #35 | - name: Commit changes |
| #36 | run: |- |
| #37 | git diff |
| #38 | git config --global user.name "clawdos" |
| #39 | git config --global user.email "clawdos@users.noreply.github.com" |
| #40 | git add . |
| #41 | git commit -m "🤖 chore: Auto format and add i18n json files" || exit 0 |
| #42 | git push |
| #43 | env: |
| #44 | GH_TOKEN: ${{ secrets.GH_TOKEN }} |
| #45 | |
| #46 |