Merge pull request #195 from sambarza/main #57
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: Open Issues for Missing Hooks in table | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
repository: cheshire-cat-ai/core | |
ref: main | |
# Relative path under $GITHUB_WORKSPACE to place the repository | |
path: core | |
- name: Look for new hooks 👀 | |
run: | | |
python ./auto_issue/open_issues.py \ | |
--paths ./core/core/cat/mad_hatter/core_plugin/hooks \ | |
--paths ./core/core/cat/mad_hatter/core_plugin/plugin_events.py \ | |
--token ${{ secrets.CCAT_DOCS_TOKEN }} |