telegram-crawler/.github/workflows/make_tracked_links_list.yml
Workflow config file is invalid. Please check your config file: yaml: line 4: did not find expected '-' indicator
2021-05-01 15:14:59 +02:00

49 lines
1.1 KiB
YAML

name: Generate or update list of tracked links
on:
schedule:
- cron: '* * * * *'
push:
# trigger on updated link crawler rules
branches:
- main
jobs:
make_tracked_links_file:
name: Make tracked links file
runs-on: macos-10.15
steps:
- name: Clone.
uses: actions/checkout@v2
with:
token: ${{ secrets.PAT }}
- name: Setup Python.
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies.
run: |
pip install -r requirements.txt
- name: Generate/update file with links.
env:
OUTPUT_FILENAME: "tracked_links_ci.txt"
run: |
python make_tracked_links_list.py
- name: Commit and push changes.
run: |
git pull
mv tracked_links_ci.txt tracked_links.txt
git config --global user.email "github-action@users.noreply.github.com"
git config --global user.name "GitHub Action"
git add .
git commit -m "Update tracked links"
git push