Skip to content

Commit

Permalink
Add initial Action config skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
GeckoEidechse committed Jul 31, 2024
1 parent a428a9e commit f34441b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/periodic-scrape.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Periodically scrape repos

on:
push: # Temp
workflow_dispatch: # Manual run
schedule:
- cron: '0 0 * * 0'

jobs:
scrape:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Temp
run: echo TODO

0 comments on commit f34441b

Please sign in to comment.