Skip to content

Update Badges

Update Badges #26

Workflow file for this run

---
name: Update Badges
on:
push:
branches:
- main
schedule:
- cron: 0 12 1 * *
workflow_dispatch:
jobs:
update-readme:
name: Update Badges
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests
- name: Execute File
run: |
python scripts/generate-badges.py
- name: Pull Request
uses: peter-evans/create-pull-request@v4
with:
branch: "chore/update-badges"
title: "Update Brand Badges"