This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
Sync Fork #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Fork | |
on: | |
schedule: | |
- cron: '0 8 * * *' | |
workflow_dispatch: | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 |