Create Badge #12039
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: Create Badge | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 * * * *' # every hour | |
workflow_dispatch: | |
jobs: | |
create-badge: | |
name: Create Badge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
repository: confluentinc/kafka-docker-playground-internal | |
fetch-depth: 0 | |
ssh-key: ${{ secrets.GH_SSH_KEY_FILE }} | |
ssh-strict: 'false' | |
- name: Get number of reproduction models | |
run: | | |
NB=$(find . -name *repro*.sh | wc -l) | |
echo "NB=$NB" >> $GITHUB_ENV | |
# https://github.com/marketplace/actions/dynamic-badges | |
- name: Create Badge | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: b7d51da11b2e8a7bdd1d2e45d4aaa2e5 | |
filename: badges.json | |
label: reproduction models | |
message: ${{ env.NB }} | |
color: green | |
namedLogo: files |