We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e2c64 commit 794e859Copy full SHA for 794e859
1 file changed
.github/scripts/icomoon_build.py
@@ -67,7 +67,8 @@ def get_icons_for_building(devicon_json_path: str, token: str):
67
for pull_req in pull_reqs:
68
if api_handler.is_feature_icon(pull_req):
69
filtered_icon = util.find_object_added_in_this_pr(all_icons, pull_req["title"])
70
- new_icons.append(filtered_icon)
+ if filtered_icon not in new_icons:
71
+ new_icons.append(filtered_icon)
72
return new_icons
73
74
0 commit comments