Daily Push Topics From CSV Files to ES INDEX #73
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: Daily Push Topics From CSV Files to ES INDEX | |
on: | |
schedule: | |
- cron: "0 4 * * *" | |
workflow_dispatch: | |
repository_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
execute_and_commit: | |
runs-on: ubuntu-latest | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
ES_CLOUD_ID: ${{ secrets.ES_CLOUD_ID }} | |
ES_USERNAME: ${{ secrets.ES_USERNAME }} | |
ES_PASSWORD: ${{ secrets.ES_PASSWORD }} | |
ES_INDEX: ${{ secrets.ES_INDEX }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.x | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Execute Python script | |
run: python push_topic_modeling_to_es.py |