mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-21 06:29:29 -05:00
29 lines
624 B
YAML
29 lines
624 B
YAML
name: Updates translation progress
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- rewrite
|
|
|
|
jobs:
|
|
update-translation-progress-issue:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
|
|
- name: Install dependencies
|
|
run: bun install --frozen-lockfile
|
|
|
|
- name: Update translation progress issue
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
bun run check-translation-jsons
|
|
gh issue edit 1104 --body-file ./translation-progress.md
|