Description
Create Custom Pipeline Badges.
Description
You can use this package to create custom pipeline badges in a standard 'svg' format. This is useful for a company to use internally, where it may not be possible to create badges through external providers. This project was inspired by the 'anybadge' library in python.
README.md
anybadger
The goal of anybadger is to provide an easy way to create custom project badges in R.
Inspired heavily by the Python anybadge library.
Installation
remotes::install_github("lmeninato/anybadger")
Example
Pipeline badge:
library(anybadger)
b <- Badge$new(label = "Pipeline", value = "Passing")
b$create_svg("pipeline_status.svg")