Collect Tweets #296
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: Collect Tweets | |
on: | |
schedule: | |
- cron: "00 00 * * *" | |
jobs: | |
update: | |
name: Collect Tweets | |
runs-on: ubuntu-latest | |
env: | |
COOKIE: ${{ secrets.COOKIE }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -U minet | |
- name: Scrape tweets | |
run: minet twitter scrape tweets 'from:medialab_ScPo' --limit 50 --cookie "${COOKIE}" > data/medialab_tweets.csv | |
- name: Check | |
run : ls data | |
- name: Commit enrichment | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add data | |
git pull | |
git commit -m "update data" data | |
git push | |