This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
Sync Fork #23
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 */6 * * *" # Runs every 6 hours | |
workflow_dispatch: # Allows manual trigger | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Sync Fork | |
run: | | |
git remote add upstream https://github.com/locustio/locust.git | |
git fetch upstream | |
git checkout master | |
git merge upstream/master | |
git push origin master |