Skip to content

Add dispatch_workflow event to workflow file. #4

Add dispatch_workflow event to workflow file.

Add dispatch_workflow event to workflow file. #4

name: Process URLs Workflow

Check failure on line 1 in .github/workflows/process-urls-workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/process-urls-workflow.yml

Invalid workflow file

`dispatch_workflow` is not a valid event name
on:
dispatch_workflow:
push:
branches:
- models/hydrate
paths:
- 'app/urls.txt'
jobs:
process-urls:
runs-on: [self-hosted, rpi-swarm]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install requests minio weaviate pydantic pydantic-settings unstructured
shell: bash
- name: Run Hydrate URLs Script
run: |
python3 hydrate.py
working-directory: ./app
shell: bash