Skip to content

Update readme and feed.opml #1645

Update readme and feed.opml

Update readme and feed.opml #1645

Workflow file for this run

name: Update readme and feed.opml
on:
workflow_dispatch:
push:
paths:
- 'blogs-original.csv'
- 'formatter.py'
- 'opml_generator.py'
- 'script.js'
- '.github/workflows/updateInfo.yml'
schedule:
- cron: '0 0 * * MON'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v3.2.0
with:
node-version: 16.x
- name: Set up Python 3.7
uses: actions/setup-python@v3.1.2
with:
python-version: 3.7
- name: formatter
run: |
python formatter.py
- name: update readme
run: |
npm install
node script.js
- name: Generate feed.opml
run: |
python opml_generator.py
- name: Commit files
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "update README and feed.opml after adding blog(s)"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}