Skip to content

main

main #26

Workflow file for this run

name: main
on:
schedule:
- cron: '22 22 * * *'
workflow_dispatch:
# push:
# branches:
# - main
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install requests feedparser beautifulsoup4
- name: Run script
run: python main.py
- name: Commit and push changes
uses: EndBug/add-and-commit@v9
with:
author_name: 'GitHub Actions'
author_email: 'actions@github.com'
message: 'Update README'