Skip to content

Commit

Permalink
Update pull_requests_to_csv.yml
Browse files Browse the repository at this point in the history
Debug
  • Loading branch information
n2020h authored Aug 7, 2024
1 parent ba42f8f commit 6f934ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests_to_csv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
(.labels | map(.name) | join(",")),
(.assignees | map(.login) | join(",")),
(.requested_reviewers | map(.login) | join(",")),
(.body | gsub("#";" ") | split(" ") | map(select(startswith("issue_number"))) | join(","))
(if .body != null then .body | gsub("#";" ") | split(" ") | map(select(startswith("issue_number"))) | join(",") else "" end)
] | @csv' pulls.json >> pull_requests.csv
# Check the content of pull_requests.csv for debugging
Expand Down

0 comments on commit 6f934ba

Please sign in to comment.