-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (47 loc) · 1.47 KB
/
check_for_latest_articles.yml
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
name: Check for Latest Articles
on:
workflow_dispatch:
repository_dispatch:
types:
- webhook_check_for_latest_articles
jobs:
update_articles:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install requests python-dotenv feedparser chromadb langchain openai
- name: Run data.py
id: script
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
STRATECHERY_RSS_ID: ${{ secrets.STRATECHERY_RSS_ID }}
STRATECHERY_ACCESS_TOKEN: ${{ secrets.STRATECHERY_ACCESS_TOKEN }}
run: |
python3 data.py
shell: bash
- name: Check for changes
id: changes
run: |
if git diff --quiet; then
echo "No changes to commit."
echo "changes_exist=false" >> $GITHUB_OUTPUT
else
echo "Changes detected."
echo "changes_exist=true" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Commit and push changes if changes exist
if: steps.changes.outputs.changes_exist == 'true'
run: |
git config --global user.email "[email protected]"
git config --global user.name "Ben Wallace"
git add .
git commit -m "Auto-add new article(s)"
git push