Skip to content

Commit 627cef3

Browse files
author
Iván Reinoso García
authored
fix print outputs step (#859)
1 parent 975308f commit 627cef3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
days-before-close: 5
1717
exempt-issue-labels: 'blocked,must,should,keep'
1818
- name: Print outputs
19-
run: echo ${{ join(steps.stale.outputs.*, ',') }}
19+
run: echo ${{ format('{0},{1}', toJSON(steps.stale.outputs.staled-issues-prs), toJSON(steps.stale.outputs.closed-issues-prs)) }}

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
stale-pr-message: 'This PR is stale'
2626
debug-only: true
2727
- name: Print outputs
28-
run: echo ${{ join(steps.stale.outputs.*, ',') }}
28+
run: echo ${{ format('{0},{1}', toJSON(steps.stale.outputs.staled-issues-prs), toJSON(steps.stale.outputs.closed-issues-prs)) }}

0 commit comments

Comments
 (0)