1
0
Fork 0
mirror of https://github.com/imjasonh/urls synced 2026-07-08 07:25:25 +00:00

initial commit

This commit is contained in:
Jason Hall 2023-01-25 11:14:39 -05:00
commit b1e17be6fa
Failed to extract signature
6 changed files with 81 additions and 0 deletions

26
.github/workflows/crawl.yaml vendored Normal file
View file

@ -0,0 +1,26 @@
name: crawl
on:
workflow_dispatch:
push:
branches: ['main']
paths-ignore: ['README.md']
schedule:
- cron: '0 * * * *' # Hourly
permissions:
contents: write
jobs:
crawl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
./crawl.sh
git config user.name "Automated"
git config user.email "actions@users.noreply.github.com"
git add -A
git commit -m "update: $(date -u)" || exit 0
git push