Skip to content

Commit

Permalink
Add workflow to update repos
Browse files Browse the repository at this point in the history
  • Loading branch information
fwilhe2 committed May 1, 2022
1 parent be9b95e commit ef4b22c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Update forked repos
on:
workflow_dispatch:
schedule:
# At 07:00 UTC on Sunday
- cron: '0 7 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: python3 update-forks.py
env:
GITHUB_TOKEN: ${{ secrets.PAT }}

0 comments on commit ef4b22c

Please sign in to comment.