-
-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (55 loc) · 1.94 KB
/
weekly-review.yml
File metadata and controls
62 lines (55 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: SimpliXio 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: SimpliXio
APP_URL: https://github.com/SimplixioMindSystem/Thinking-Engine
AUTHOR_NAME: Pierre-Henry Soria
AUTHOR_URL: https://pierrehenry.dev
SITE_BASE_URL: https://pierrehenry.dev
RSS_FEEDS: ${{ secrets.RSS_FEEDS }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOPICS: ai,agents,developer-tools,context-engineering
CORTEX_OUTPUTS_DIR: output/cortex_today
PUBLISH_X: "false"
PUBLISH_LINKEDIN: "false"
PUBLISH_SITE: "true"
PUBLISH_JSON_LOG: "true"
PUBLISH_DRY_RUN: "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 SimpliXio review"
git push