mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-01-24 10:26:00 +00:00
22 lines
378 B
YAML
22 lines
378 B
YAML
name: Update List Count Banner
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
update-banner:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Count list items and update README
|
|
run: python3 src/update_banner.py
|