Generate Badges #1244
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Badges | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
get-badges: | |
runs-on: ubuntu-latest | |
env: | |
YARN_NODE_LINKER: node-modules | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 22 | |
- run: corepack enable | |
- run: yarn install | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- id: libyear | |
uses: s0/[email protected] | |
- run: mkdir badges | |
- uses: emibcn/[email protected] | |
with: | |
label: "libyear drift" | |
status: ${{ steps.libyear.outputs.drift }} year(s) behind | |
color: "blue" | |
path: "badges/drift.svg" | |
- uses: emibcn/[email protected] | |
with: | |
label: "libyear pulse" | |
status: ${{ steps.libyear.outputs.pulse }} year(s) behind | |
color: "blue" | |
path: "badges/pulse.svg" | |
- uses: emibcn/[email protected] | |
with: | |
label: "libyear" | |
status: ${{ steps.libyear.outputs.releases }} release(s) behind | |
color: "blue" | |
path: "badges/releases.svg" | |
- uses: emibcn/[email protected] | |
with: | |
label: "libyear" | |
status: ${{ steps.libyear.outputs.major }} major release(s) behind | |
color: "blue" | |
path: "badges/major.svg" | |
- uses: emibcn/[email protected] | |
with: | |
label: "libyear" | |
status: ${{ steps.libyear.outputs.minor }} minor release(s) behind | |
color: "blue" | |
path: "badges/minor.svg" | |
- uses: emibcn/[email protected] | |
with: | |
label: "libyear" | |
status: ${{ steps.libyear.outputs.patch }} patch release(s) behind | |
color: "blue" | |
path: "badges/patch.svg" | |
- name: Push badges to gh-badges directory | |
uses: s0/[email protected] | |
env: | |
REPO: self | |
BRANCH: gh-badges | |
FOLDER: badges | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SQUASH_HISTORY: true |