8000 test · pnacht/python-docs-es@be813b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit be813b7

Browse files
committed
test
Signed-off-by: Pedro Kaj Kjellerup Nacht <pnacht@google.com>
1 parent 67499fd commit be813b7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/pr-comment.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
name: Entradas sin traducción
1212
runs-on: ubuntu-22.04
1313
outputs:
14-
any_changed: steps.changed-files.outputs.any_changed
15-
comment: steps.create-pr-comment.outputs.comment
14+
any_changed: ${{ steps.changed-files.outputs.any_changed }}
15+
comment: ${{ steps.create-pr-comment.outputs.comment }}
1616
steps:
1717
- uses: actions/checkout@v4
1818
with:
@@ -47,11 +47,16 @@ jobs:
4747
write-comment:
4848
runs-on: ubuntu-22.04
4949
needs: [define-comment]
50-
if: needs.define-comment.outputs.any_changed == 'true'
5150
permissions:
5251
issues: write
5352
pull-requests: write
5453
steps:
54+
- run: |
55+
echo 123
56+
echo ${{ needs.define-comment.outputs.any_changed }}
57+
echo ${{ needs.define-comment.outputs.comment }}
58+
echo 123
59+
5560
- name: Agregar comentario con entradas faltantes
5661
uses: thollander/actions-comment-pull-request@v2
5762
with:

0 commit comments

Comments
 (0)
0