Get All news from fauna #3185
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: Get All news from fauna | |
on: | |
push: | |
branches: | |
- master | |
- main | |
schedule: | |
- cron: '1 11-20/2 * * *' | |
env: | |
GOOGLE_SERVICE_CREDS: ${{ secrets.CALENDAR_SERVICE_ACCOUNT }} | |
CALENDAR_ID: ${{ secrets.CALENDAR_TEST_ID_EARNINGS_IPO }} | |
FAUNA_SECRET: ${{ secrets.FAUNA_AI_ACCESS_TOKEN }} | |
DISCORD_NOTIFICATION_WEBHOOK: ${{secrets.DISCORD_EARNINGS_WEBHOOK }} | |
COCKROACH_DB_URL: ${{ secrets.COCKROACH_DB_URL }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install Dependencies | |
run: pip3 install --upgrade pip && pip3 install -r requirements.txt | |
- name: Print the summary to STDOUT | |
run: | | |
pip3 install spacy | |
pip3 install dateparser faunadb | |
python3 -m spacy download en_core_web_sm | |
- name: Fetch Details | |
run: python3 -m es_cal.cron_api.get_all_fauna_tasks | |
- uses: sarisia/actions-status-discord@v1 | |
if: failure() | |
with: | |
webhook: ${{ secrets.DISCORD_CODE_STATUS_WEBHOOK }} | |
status: ${{ job.status }} | |
title: ${{ github.repository }} | |
description: "Make Earnings From News" | |
nofail: false | |
nocontext: false | |
noprefix: false | |
color: 0x0000ff | |
username: GitHub Actions | |