Skip to content

Commit

Permalink
chore(sync): added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Apr 9, 2024
1 parent 68d7532 commit b773033
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Sync Fork

on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config user.name mise-en-dev
git config user.email [email protected]
git pull --ff-only https://github.com/asdf-vm/asdf-plugins master
git push origin main

0 comments on commit b773033

Please sign in to comment.