chore(session): forward all messages, closes #30 (#42) #86
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 skill.json | |
on: | |
push: | |
permissions: | |
contents: write | |
jobs: | |
update_skill_json: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
path: action/skill | |
- name: Get Updated skill.json | |
run: | | |
pip install toml | |
python action/skill/.github/workflows/scripts/update_skill_json.py action/skill | |
- name: Push skill.json Change | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update skill.json | |
repository: action/skill/ |