We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d72992 commit 3962972Copy full SHA for 3962972
.github/workflows/pr-comment.yml
@@ -29,7 +29,12 @@ jobs:
29
id: create-pr-comment
30
env:
31
CHANGED_PO_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
32
- run: echo "comment=\"`python scripts/list_missing_entries.py --github $CHANGED_PO_FILES`\"" >> "$GITHUB_OUTPUT"
+ run: |
33
+ {
34
+ echo 'comment=<<EOF'
35
+ python scripts/list_missing_entries.py --github $CHANGED_PO_FILES
36
+ echo EOF
37
+ } >> "$GITHUB_OUTPUT"
38
- name: Agregar comentario con entradas faltantes
39
if: steps.changed-files.outputs.any_changed == 'true'
40
uses: thollander/actions-comment-pull-request@v2
0 commit comments