The Foxy Does What The Foxy Wants #1120
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: 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 |