pditommaso / awesome-pipeline

A curated list of awesome pipeline toolkits inspired by Awesome Sysadmin
6.12k stars 625 forks source link

any chance we can add some meta data per repo #132

Open ghost opened 4 years ago

ghost commented 4 years ago

I wish I could sort by "number of issues" "stars", "watch" etc. Is there a way to do add that meta data automatically per repo?

wbchn commented 4 years ago

I have no idea about sort, but added stars shields(#135) after github repo link.

alperyilmaz commented 3 years ago

I guess #135 was not merged to master. In the meantime, II did a PR #152 which has badges for language, stars and last activity date.. hope it is merged..

wbchn commented 3 years ago

@alperyilmaz hope so.

I look into the code, reference the document color=<COLOR>, there is an extra #(%23) in awk:

?labelColor=abcdef | Set background of the left part (hex, rgb, rgba, hsl, hsla and css named colors supported). The legacy name "colorA" is also supported.

alperyilmaz commented 3 years ago

Thanks for checking the code. That extra percent sign is due to awk's printf function. If you intend to print actual percent sign, you need to use %%.

wbchn commented 3 years ago

Sorry for the ambiguous reply, my mean is, after awk command, color=%%23456eb0 will become to color=%23456eb0 in README_meta.md, no need extra #(%23) before the color code reference the document, just using color=456eb0.

alperyilmaz commented 3 years ago

oh, I see.. fixed it.. now it's much cleaner.. thanks for pointing it out..