Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/translation_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
merge_base=$(git merge-base refs/remotes/upstream/master HEAD)
echo "merge base sha: ${merge_base}"
git checkout $merge_base
echo ::set-output name=merge_base::$merge_base
echo "name=merge_base::$merge_base" >> $GITHUB_OUTPUT
cd ..

- name: Print debug stuff
Expand Down Expand Up @@ -79,10 +79,10 @@ jobs:
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
echo ::set-output name=body::$body
echo "name=body::$body" >> $GITHUB_OUTPUT

- name: Create PR comment
uses: peter-evans/create-or-update-comment@v1
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{github.event.pull_request.number}}
body: ${{ steps.get-comment-body.outputs.body }}
Loading