NewsAPI #6948
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: 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' |