Skip to content

daily hacker news #1453

daily hacker news

daily hacker news #1453

Workflow file for this run

name: daily hacker news
on:
# push:
# branches:
# - master
schedule:
- cron: '0 9 * * *'
jobs:
get_top_stories:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: pip install
run: pip install -r requirements.txt
- name: get started
run: python main.py
env:
ACCESS_TOKEN: ${{ secrets.SECRET }}