We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7254fa3 commit 190744dCopy full SHA for 190744d
.github/workflows/label-pull-requests-all.yml
@@ -20,7 +20,9 @@ jobs:
20
- run: |
21
listOpenIssues="$(gh pr list --repo andygrunwald/go-jira --state open --limit 100 --json number --jq '.[].number')"
22
23
- echo "LIST_OPEN_ISSUES=$listOpenIssues\n" >> $GITHUB_OUTPUT
+ echo 'LIST_OPEN_ISSUES<<EOF' >> $GITHUB_OUTPUT
24
+ echo $listOpenIssues >> $GITHUB_OUTPUT
25
+ echo 'EOF' >> $GITHUB_OUTPUT
26
id: find_all_open_prs
27
env:
28
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments