Skip to content

refactor: UTF-16 → codepoint 변환을 상류 SSOT 로 단일화 (v0.3.2) #37

refactor: UTF-16 → codepoint 변환을 상류 SSOT 로 단일화 (v0.3.2)

refactor: UTF-16 → codepoint 변환을 상류 SSOT 로 단일화 (v0.3.2) #37

name: Dependabot uv sync
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
uv-sync:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: astral-sh/setup-uv@v8.1.0
- run: uv sync --no-install-project
- name: Commit updated uv.lock
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add uv.lock
git diff --cached --quiet || git commit -m "chore: update uv.lock"
git push