Skip to content

SimpliXio Weekly Review #1

SimpliXio Weekly Review

SimpliXio Weekly Review #1

Workflow file for this run

name: CortexOS Weekly Review
on:
schedule:
- cron: "0 22 * * 0"
workflow_dispatch:
jobs:
weekly-review:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r cortexos_automation_scripts/requirements.txt
- name: Run weekly pipeline
working-directory: cortexos_automation_scripts
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_MODEL: ${{ secrets.OPENAI_MODEL }}
APP_NAME: CortexOS
APP_URL: https://github.com/CortexMindSystem/Cortex-Thinking-Engine
AUTHOR_NAME: Pierre-Henry Soria
AUTHOR_URL: https://ph7.me
SITE_BASE_URL: https://ph7.me
RSS_FEEDS: ${{ secrets.RSS_FEEDS }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOPICS: ai,agents,developer-tools,context-engineering
CORTEX_OUTPUTS_DIR: output/cortex_today
AUTO_APPROVE: "true"
PUBLISH_X: "false"
PUBLISH_LINKEDIN: "false"
PUBLISH_SITE: "true"
PUBLISH_JSON_LOG: "true"
OUTPUT_DIR: output
run: |
python scripts/run_weekly_pipeline.py --strict-quality
- name: Commit generated outputs
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add cortexos_automation_scripts/output/
if git diff --cached --quiet; then
echo "No generated changes to commit"
exit 0
fi
git commit -m "chore: weekly CortexOS review"
git push