Merge branch 'main' into feat/localisation

This commit is contained in:
Justin Yoo 2025-07-02 21:40:53 +09:00 committed by GitHub
commit d0d391cf74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,8 +43,17 @@ jobs:
echo "EOF" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT
fi fi
- name: Output diff to logs for non-write users
if: steps.check-diff.outputs.status == 'failure' && github.event.pull_request.head.repo.permissions.push != true
run: |
echo "::group::README.md diff (changes needed)"
echo "The following changes need to be made to README.md:"
echo ""
git diff README.md
echo "::endgroup::"
- name: Comment on PR if README.md needs updating - name: Comment on PR if README.md needs updating
if: steps.check-diff.outputs.status == 'failure' if: steps.check-diff.outputs.status == 'failure' && github.event.pull_request.head.repo.permissions.push == true
uses: marocchino/sticky-pull-request-comment@v2 uses: marocchino/sticky-pull-request-comment@v2
with: with:
header: readme-validation header: readme-validation