Repositories are a great must but why no automated github repos? #201496
-
🏷️ Discussion TypeQuestion Bodyso github repos are needed to be opensource right? BUT! GitHub just banned automated repository making (which means the git cli used by the people who are making stuff with ai) so why does GitHub ban that? they cant make their own repos by themselves over 100MB file size limit manually or type the git cli commands they wanna automate their own coding and show it so why? like for pull requests to merge them by godot banning them! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
|
GitHub itself hasn't banned automated repo creation or the git CLI — you can still script git init/git push/the GitHub API exactly like before, and the 100MB file limit is unrelated (that's just a long-standing Git limitation, not an AI-related rule; use Git LFS for large files). |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the clarification. It's helpful to know that this is a repository maintainer policy rather than a GitHub wide restriction. Understanding that distinction makes the situation much clearer. |
Beta Was this translation helpful? Give feedback.
-
|
Hi there, I think you're mixing up a few things. Let me clarify quickly: GitHub repos DON'T have to be open-source. You can have unlimited private repos. GitHub did NOT ban automated repo creation. You can still use the GitHub API, git init, git push, and scripts exactly as before. The 100MB limit is a Git limitation (not AI-related). Use Git LFS for large files. Godot banning AI PRs is THEIR project rule – not a GitHub-wide ban. Every project owner can set their own contribution rules. Bottom line: You can automate and use AI all you want in your own repos. You just can't submit AI-generated PRs to projects that have explicitly banned them (like Godot). That's their right – it's their project. Hope that clears it up! 👍 |
Beta Was this translation helpful? Give feedback.
GitHub itself hasn't banned automated repo creation or the git CLI — you can still script git init/git push/the GitHub API exactly like before, and the 100MB file limit is unrelated (that's just a long-standing Git limitation, not an AI-related rule; use Git LFS for large files).
What's actually happening is that individual projects are choosing to ban AI-generated pull requests on their own repos — this is a maintainer policy, not a GitHub platform feature. Godot's team, for example, said any autonomous agent-authored or "vibe-coded" contributions get an auto-ban, and they're extending that to prohibit AI from generating any substantial code at all, limiting AI use to things like code co…