This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
Gemma 2 and Phi 3 #36
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: Commit Catalog | |
on: | |
pull_request: | |
types: [closed] | |
branches: [main] | |
paths-ignore: | |
- '**/README.md' | |
jobs: | |
commit: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Validate JSON and create catalog | |
run: python createCatalog.py | |
- name: Commit and push changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add -f catalog.json | |
git commit -m "Update catalog.json" -a | |
git push https://${{secrets.GH_PAT}}@github.com/${{github.repository}}.git HEAD:main |