Skip to content

.github/workflows/automate.yml #4

.github/workflows/automate.yml

.github/workflows/automate.yml #4

Workflow file for this run

name: agentville
on:
schedule:
- cron: "0 2,13,17 * * *"
workflow_dispatch:
jobs:
chaos-tweet:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install tweepy google-genai
# Note: We use the names you have in your GitHub Secrets
- name: Run Chaos Engine
env:
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
TWITTER_API_KEY: ${{ secrets.TWITTER_API_KEY }}
TWITTER_API_SECRET: ${{ secrets.TWITTER_API_SECRET }}
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
run: python llmEngine.py