Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/label-translations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Label translation PRs

on:
pull_request_target:
types: [opened, synchronize, reopened]
paths:
- "locales/**/*.po"

permissions:
pull-requests: write
contents: read

jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Apply translation labels
uses: actions/github-script@v7
with:
script: |
const files = await github.paginate(github.rest.pulls.listFiles, {
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
per_page: 100,
});

const languages = new Set();
for (const file of files) {
const match = file.filename.match(/^locales\/([^/]+)\/.*\.po$/);
if (match) {
languages.add(match[1].toUpperCase());
}
}

if (languages.size === 0) {
core.info('No .po files under locales/ changed; nothing to label.');
return;
}

const labels = ['translations', ...[...languages].map(l => `lang-${l}`)];
core.info(`Applying labels: ${labels.join(', ')}`);

await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
labels,
});