You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2026-04-10 17:02:07 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
442 B
YAML
24 lines
442 B
YAML
name: Prevent unintended msgid changes
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "po/*.po"
|
|
|
|
jobs:
|
|
check-msgid-changes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Reset git
|
|
run: git reset origin/main
|
|
|
|
- name: Check po file changes
|
|
run: python3 .github/workflows/check-msgid-changes.py
|