mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-03-05 16:36:19 +02:00
22 lines
413 B
YAML
22 lines
413 B
YAML
|
name: Prevent msgid changes in translations
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- "**/*.po"
|
||
|
|
||
|
jobs:
|
||
|
prevent-msgid-changes:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- name: Reset git
|
||
|
run: git reset origin/main
|
||
|
|
||
|
- name: Check po file changes
|
||
|
run: python3 .github/workflows/prevent-msgid.py
|