Skip to content

Commit 3962972

Browse files
committed
action
1 parent 9d72992 commit 3962972

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/pr-comment.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ jobs:
2929
id: create-pr-comment
3030
env:
3131
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"
32+
run: |
33+
{
34+
echo 'comment=<<EOF'
35+
python scripts/list_missing_entries.py --github $CHANGED_PO_FILES
36+
echo EOF
37+
} >> "$GITHUB_OUTPUT"
3338
- name: Agregar comentario con entradas faltantes
3439
if: steps.changed-files.outputs.any_changed == 'true'
3540
uses: thollander/actions-comment-pull-request@v2

0 commit comments

Comments
 (0)