'If I pull every 1 minute with a script on my linux server from Github, will I be banned? [closed]

I have two repos on Gitee and Github, and I want to use my personal server on linux to sync them. What I've done is to pull every 1 minute from github and then push to Gitee. Will I suffer from ban for doing this?



Solution 1:[1]

If you're not receiving updates on your public repo at this frequency, you could also consider setting up an on: push actions workflow to sync the changes only as they happen. It would probably make GitHub happier than a script that polls for changes when it's not needed. You could use a locally hosted GitHub runner to push the changes into your local git server's repo.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1