Skip to content

NewsAPI

NewsAPI #6974

Workflow file for this run

name: NewsAPI
on:
workflow_dispatch:
schedule:
- cron: '10 */2 * * *' ## at minute 10 past every 2nd hour
jobs:
newsapi:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Downloading the news
uses: ./.github/actions
with:
url: 'https://newsapi.org/v2/top-headlines?country=us&category=general&pageSize=100&apiKey=${{ secrets.API_NEWSAPI }}'
news_key: 'articles'