File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 11
11
name : Entradas sin traducción
12
12
runs-on : ubuntu-22.04
13
13
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 }}
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
with :
@@ -47,11 +47,16 @@ jobs:
47
47
write-comment :
48
48
runs-on : ubuntu-22.04
49
49
needs : [define-comment]
50
- if : needs.define-comment.outputs.any_changed == 'true'
51
50
permissions :
52
51
issues : write
53
52
pull-requests : write
54
53
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
+
55
60
- name : Agregar comentario con entradas faltantes
56
61
uses : thollander/actions-comment-pull-request@v2
57
62
with :
You can’t perform that action at this time.
0 commit comments