Skip to content

The Foxy Does What The Foxy Wants #1118

The Foxy Does What The Foxy Wants

The Foxy Does What The Foxy Wants #1118

Workflow file for this run

name: The Foxy Does What The Foxy Wants
on:
schedule:
- cron: "0 7 * * *"
jobs:
build:
name: Twitter Data
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- run: python data/scripts/twitter.py
env:
TWITTER_ACCESS_KEY: ${{ secrets.TWITTER_ACCESS_KEY }}
TWITTER_ACCESS_SECRET: ${{ secrets.TWITTER_ACCESS_SECRET }}
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }}
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }}
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "Api Updater"
git add .
git diff-index --quiet HEAD || git commit -m "Twitter Data Updated 🦊" -a
git push