Update manifest based on current state of the repo. (#102) #43
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: Update Manifest | |
on: | |
push: | |
branches: [ main ] | |
workflow_dispatch: {} | |
jobs: | |
update-manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
pip install bikeshed | |
- name: Generate new manifest | |
run: python generate/__init__.py | |
- name: Commit manifest back | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
branch: update-manifest | |
commit-message: 'chore: Update manifest file. [skip actions]' | |
title: 'Update manifest based on current state of the repo.' |