Fix: wrong selected repository; disable Push - missing permission (#1785)

This commit is contained in:
Ludy 2024-08-31 22:48:40 +02:00 committed by GitHub
parent 7d73337461
commit 42677fbd5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 29 additions and 22 deletions

View file

@ -165,6 +165,7 @@ def check_for_differences(reference_file, file_list, branch):
report.append( report.append(
f" - **Issue:** Too many lines! Check your translation files! Details: {reference_line_count} (reference) vs {current_line_count} (current)." f" - **Issue:** Too many lines! Check your translation files! Details: {reference_line_count} (reference) vs {current_line_count} (current)."
) )
# update_missing_keys(reference_file, [file_path], branch + "/")
else: else:
report.append("- **Test 1 Status:** ✅ Passed") report.append("- **Test 1 Status:** ✅ Passed")
@ -200,16 +201,19 @@ def check_for_differences(reference_file, file_list, branch):
report.append( report.append(
f" - **Issue:** There are keys in ***{basename_reference_file}*** `{extra_keys_str}` that are not present in ***{basename_current_file}***!" f" - **Issue:** There are keys in ***{basename_reference_file}*** `{extra_keys_str}` that are not present in ***{basename_current_file}***!"
) )
# update_missing_keys(reference_file, [file_path], branch + "/")
else: else:
report.append("- **Test 2 Status:** ✅ Passed") report.append("- **Test 2 Status:** ✅ Passed")
if has_differences: # if has_differences:
report.append("") # report.append("")
report.append(f"#### 🚧 ***{basename_current_file}*** will be corrected...") # report.append(f"#### 🚧 ***{basename_current_file}*** will be corrected...")
report.append("") report.append("")
report.append("---") report.append("---")
report.append("") report.append("")
update_file_list = glob.glob(branch + "/src/**/messages_*.properties", recursive=True) # update_file_list = glob.glob(branch + "/src/**/messages_*.properties", recursive=True)
update_missing_keys(reference_file, update_file_list) # update_missing_keys(reference_file, update_file_list)
# report.append("---")
# report.append("")
if has_differences: if has_differences:
report.append("## ❌ Overall Check Status: **_Failed_**") report.append("## ❌ Overall Check Status: **_Failed_**")
else: else:

View file

@ -21,7 +21,8 @@ jobs:
- name: Checkout PR branch - name: Checkout PR branch
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
ref: ${{ github.head_ref }} repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
path: pr-branch path: pr-branch
fetch-depth: 0 fetch-depth: 0
@ -47,6 +48,7 @@ jobs:
run: | run: |
echo "Fetching PR changed files..." echo "Fetching PR changed files..."
cd pr-branch cd pr-branch
gh repo set-default ${{ github.repository }}
gh pr view ${{ github.event.pull_request.number }} --json files -q ".files[].path" > ../changed_files.txt gh pr view ${{ github.event.pull_request.number }} --json files -q ".files[].path" > ../changed_files.txt
cd .. cd ..
echo $(cat changed_files.txt) echo $(cat changed_files.txt)
@ -134,22 +136,23 @@ jobs:
console.log("Comment update attempt denied. Actor does not match."); console.log("Comment update attempt denied. Actor does not match.");
} }
- name: Set up git config # - name: Set up git config
run: | # run: |
git config --global user.name "github-actions[bot]" # git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com" # git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Add translation keys # - name: Add translation keys
run: | # run: |
cd ${{ env.BRANCH_PATH }} # cd ${{ env.BRANCH_PATH }}
git add src/main/resources/messages_*.properties # git add src/main/resources/messages_*.properties
git diff --staged --quiet || echo "CHANGES_DETECTED=true" >> $GITHUB_ENV # git diff --staged --quiet || echo "CHANGES_DETECTED=true" >> $GITHUB_ENV
git commit -m "Update translation files" || echo "No changes to commit" # git commit -m "Update translation files" || echo "No changes to commit"
- name: Push # - name: Push
if: env.CHANGES_DETECTED == 'true' # if: env.CHANGES_DETECTED == 'true'
run: | # run: |
cd pr-branch # cd pr-branch
git push origin ${{ github.head_ref }} || echo "Push failed: possibly no changes to push" # git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.event.pull_request.head.repo.full_name }}.git
# git push origin ${{ github.head_ref }} || echo "Push failed: possibly no changes to push"
update-translations-main: update-translations-main:
if: github.event_name == 'push' if: github.event_name == 'push'