setup-gh-badges
v2.2.2
Published
node cli helper command to update your README badges
Readme
setup-gh-badges
badges-maker made simple
- Add this snippet to the very top of your
README.mdfile:
<img src=".ci_badges/npm-version-badge.svg" /> <img src=".ci_badges/npm-dependencies-badge.svg" /> <img src=".ci_badges/npm-devdependencies-badge.svg" />ℹ️ Usage:
$ npx setup-gh-badges📌 Setup as a GitHub Action workflow
- create
.github/workflows/sync_badges.yml
jobs:
sync_badges:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: |
rm -rf .ci_badges
npx setup-gh-badges
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .ci_badges
git commit -m "[CI:deploy] sync_badges job"
- uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}📌 Recommended if you don't have a CI server
npm i husky --save-devThen add the following hook to your
package.json:
"husky": {
"hooks": {
"pre-push": "npx setup-gh-badges"
}
},