Skip to content

Commit

Permalink
fix(yegor256#294): description, topics escaped
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Apr 30, 2024
1 parent 01e202a commit 748155a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions steps/discover-repos.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def cooldown(opts, found)
created_at: i[:created_at].iso8601,
size: i[:size],
open_issues_count: i[:open_issues_count],
description: i[:description],
topics: i[:topics]
description: "\"#{i[:description]}\"",
topics: i[:topics].join(" ")
}
puts "Found #{i[:full_name].inspect} GitHub repo ##{found.count} \
(#{i[:forks_count]} forks, #{i[:stargazers_count]} stars) with license: #{i[:license][:key]}"
Expand Down

0 comments on commit 748155a

Please sign in to comment.