Consolidate ai directories #2
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: README Update Automation | |
# Test | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
update-readme: | |
name: Update README after PR merge | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repo to access its content | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
# Set up Python using the latest stable version | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.12" |