2024-12-21 23:40:53 +01:00
|
|
|
name: Check Properties Files on PR
|
2024-08-25 23:04:28 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request_target:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
paths:
|
|
|
|
- "src/main/resources/messages_*.properties"
|
2024-12-21 23:40:53 +01:00
|
|
|
|
2024-12-21 23:48:02 +01:00
|
|
|
permissions: read-all
|
2024-08-31 15:54:11 +02:00
|
|
|
|
2024-08-25 23:04:28 +02:00
|
|
|
jobs:
|
|
|
|
check-files:
|
2024-08-31 15:54:11 +02:00
|
|
|
if: github.event_name == 'pull_request_target'
|
2024-08-25 23:04:28 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-12-21 13:28:35 +01:00
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
|
2024-11-20 10:44:51 +01:00
|
|
|
- name: Checkout main branch first
|
2024-12-21 13:28:35 +01:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-08-25 23:04:28 +02:00
|
|
|
with:
|
2024-11-20 10:44:51 +01:00
|
|
|
ref: main
|
|
|
|
path: main-branch
|
2024-08-25 23:04:28 +02:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-11-20 10:44:51 +01:00
|
|
|
- name: Checkout PR branch
|
2024-12-21 13:28:35 +01:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-12-21 23:15:24 +01:00
|
|
|
env:
|
|
|
|
PULL_REQUEST_REF: ${{ github.event.pull_request.head.ref }}
|
2024-08-25 23:04:28 +02:00
|
|
|
with:
|
2024-11-20 10:44:51 +01:00
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2024-12-21 23:15:24 +01:00
|
|
|
ref: $PULL_REQUEST_REF
|
2024-11-20 10:44:51 +01:00
|
|
|
path: pr-branch
|
2024-08-25 23:04:28 +02:00
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Python
|
2024-12-21 13:28:35 +01:00
|
|
|
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
|
2024-08-25 23:04:28 +02:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
|
|
|
|
- name: Install GitHub CLI
|
|
|
|
run: sudo apt-get update && sudo apt-get install -y gh
|
|
|
|
|
|
|
|
- name: Fetch PR changed files
|
|
|
|
id: fetch-pr-changes
|
|
|
|
env:
|
|
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: |
|
|
|
|
echo "Fetching PR changed files..."
|
|
|
|
cd pr-branch
|
2024-08-31 22:48:40 +02:00
|
|
|
gh repo set-default ${{ github.repository }}
|
2024-11-20 10:44:51 +01:00
|
|
|
# Store files in a safe way, only allowing valid properties files
|
|
|
|
echo "Getting list of changed files from PR..."
|
|
|
|
gh pr view ${{ github.event.pull_request.number }} --json files -q ".files[].path" | grep -E '^src/main/resources/messages_[a-zA-Z_]+\.properties$' > ../changed_files.txt
|
2024-08-25 23:04:28 +02:00
|
|
|
cd ..
|
2024-11-21 12:31:32 +01:00
|
|
|
|
2024-11-20 10:44:51 +01:00
|
|
|
echo "Processing changed files..."
|
|
|
|
mapfile -t CHANGED_FILES < changed_files.txt
|
|
|
|
|
|
|
|
CHANGED_FILES_STR="${CHANGED_FILES[*]}"
|
|
|
|
echo "CHANGED_FILES=${CHANGED_FILES_STR}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
echo "Changed files: ${CHANGED_FILES_STR}"
|
2024-08-25 23:04:28 +02:00
|
|
|
|
|
|
|
- name: Determine reference file
|
|
|
|
id: determine-file
|
|
|
|
run: |
|
|
|
|
echo "Determining reference file..."
|
2024-11-20 10:44:51 +01:00
|
|
|
if grep -Fxq "src/main/resources/messages_en_GB.properties" changed_files.txt; then
|
|
|
|
echo "Using PR branch reference file"
|
2024-08-25 23:04:28 +02:00
|
|
|
echo "REFERENCE_FILE=pr-branch/src/main/resources/messages_en_GB.properties" >> $GITHUB_ENV
|
|
|
|
else
|
2024-11-20 10:44:51 +01:00
|
|
|
echo "Using main branch reference file"
|
2024-08-25 23:04:28 +02:00
|
|
|
echo "REFERENCE_FILE=main-branch/src/main/resources/messages_en_GB.properties" >> $GITHUB_ENV
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Show REFERENCE_FILE
|
2024-11-20 10:44:51 +01:00
|
|
|
run: echo "Reference file is set to ${REFERENCE_FILE}"
|
2024-08-25 23:04:28 +02:00
|
|
|
|
|
|
|
- name: Run Python script to check files
|
|
|
|
id: run-check
|
|
|
|
run: |
|
2024-11-20 10:44:51 +01:00
|
|
|
echo "Running Python script to check files..."
|
|
|
|
python main-branch/.github/scripts/check_language_properties.py \
|
2024-11-21 12:31:32 +01:00
|
|
|
--actor ${{ github.event.pull_request.user.login }} \
|
2024-11-20 10:44:51 +01:00
|
|
|
--reference-file "${REFERENCE_FILE}" \
|
2024-11-23 12:49:49 +01:00
|
|
|
--branch pr-branch \
|
|
|
|
--files "${CHANGED_FILES[@]}" > result.txt || true
|
2024-08-25 23:04:28 +02:00
|
|
|
|
|
|
|
- name: Capture output
|
|
|
|
id: capture-output
|
|
|
|
run: |
|
2024-11-23 12:49:49 +01:00
|
|
|
if [ -f result.txt ] && [ -s result.txt ]; then
|
|
|
|
echo "Test, capturing output..."
|
|
|
|
SCRIPT_OUTPUT=$(cat result.txt)
|
|
|
|
echo "SCRIPT_OUTPUT<<EOF" >> $GITHUB_ENV
|
|
|
|
echo "$SCRIPT_OUTPUT" >> $GITHUB_ENV
|
2024-08-25 23:04:28 +02:00
|
|
|
echo "EOF" >> $GITHUB_ENV
|
2024-11-23 12:49:49 +01:00
|
|
|
echo "${SCRIPT_OUTPUT}"
|
|
|
|
|
|
|
|
# Set FAIL_JOB to true if SCRIPT_OUTPUT contains ❌
|
|
|
|
if [[ "$SCRIPT_OUTPUT" == *"❌"* ]]; then
|
|
|
|
echo "FAIL_JOB=true" >> $GITHUB_ENV
|
|
|
|
else
|
|
|
|
echo "FAIL_JOB=false" >> $GITHUB_ENV
|
|
|
|
fi
|
2024-08-31 15:54:11 +02:00
|
|
|
else
|
2024-11-23 12:49:49 +01:00
|
|
|
echo "No update found."
|
|
|
|
echo "SCRIPT_OUTPUT=" >> $GITHUB_ENV
|
|
|
|
echo "FAIL_JOB=false" >> $GITHUB_ENV
|
2024-08-25 23:04:28 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Post comment on PR
|
2024-11-23 12:49:49 +01:00
|
|
|
if: env.SCRIPT_OUTPUT != ''
|
2024-12-21 13:28:35 +01:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
2024-08-25 23:04:28 +02:00
|
|
|
with:
|
|
|
|
script: |
|
2024-11-23 12:49:49 +01:00
|
|
|
const { GITHUB_REPOSITORY, SCRIPT_OUTPUT } = process.env;
|
2024-08-25 23:04:28 +02:00
|
|
|
const [repoOwner, repoName] = GITHUB_REPOSITORY.split('/');
|
2024-08-31 15:54:11 +02:00
|
|
|
const prNumber = context.issue.number;
|
|
|
|
|
|
|
|
// Find existing comment
|
|
|
|
const comments = await github.rest.issues.listComments({
|
2024-08-25 23:04:28 +02:00
|
|
|
owner: repoOwner,
|
|
|
|
repo: repoName,
|
2024-08-31 15:54:11 +02:00
|
|
|
issue_number: prNumber
|
2024-08-25 23:04:28 +02:00
|
|
|
});
|
2024-08-31 15:54:11 +02:00
|
|
|
|
|
|
|
const comment = comments.data.find(c => c.body.includes("## 🚀 Translation Verification Summary"));
|
2024-11-21 12:31:32 +01:00
|
|
|
|
2024-08-31 15:54:11 +02:00
|
|
|
// Only allow the action user to update comments
|
|
|
|
const expectedActor = "github-actions[bot]";
|
|
|
|
|
|
|
|
if (comment && comment.user.login === expectedActor) {
|
|
|
|
// Update existing comment
|
|
|
|
await github.rest.issues.updateComment({
|
|
|
|
owner: repoOwner,
|
|
|
|
repo: repoName,
|
|
|
|
comment_id: comment.id,
|
2024-11-23 12:49:49 +01:00
|
|
|
body: `## 🚀 Translation Verification Summary\n\n\n${SCRIPT_OUTPUT}\n`
|
2024-08-31 15:54:11 +02:00
|
|
|
});
|
|
|
|
console.log("Updated existing comment.");
|
|
|
|
} else if (!comment) {
|
|
|
|
// Create new comment if no existing comment is found
|
|
|
|
await github.rest.issues.createComment({
|
|
|
|
owner: repoOwner,
|
|
|
|
repo: repoName,
|
|
|
|
issue_number: prNumber,
|
2024-11-23 12:49:49 +01:00
|
|
|
body: `## 🚀 Translation Verification Summary\n\n\n${SCRIPT_OUTPUT}\n`
|
2024-08-31 15:54:11 +02:00
|
|
|
});
|
|
|
|
console.log("Created new comment.");
|
|
|
|
} else {
|
|
|
|
console.log("Comment update attempt denied. Actor does not match.");
|
|
|
|
}
|
|
|
|
|
2024-11-23 12:49:49 +01:00
|
|
|
- name: Fail job if errors found
|
|
|
|
if: env.FAIL_JOB == 'true'
|
|
|
|
run: |
|
|
|
|
echo "Failing the job because errors were detected."
|
|
|
|
exit 1
|