This repository holds a JSON file (repos.json
) used by the GitHub Release Bot to track and announce new releases for various repositories. The bot posts updates about releases categorized into different topics like Android, Linux, Windows, macOS, and miscellaneous projects.
We welcome contributions to expand the list of repositories! If you have a repository or know one that should be tracked, follow the instructions below to add it.
-
Fork the repository:
- Click the "Fork" button in the top-right corner of this repository to create a copy in your GitHub account.
-
Clone your forked repository:
git clone https://github.com/YOUR_USERNAME/gitbot-db.git cd gitbot-db
-
Edit the
repos.json
file:- Open the
repos.json
file located in the root directory of the project. - Add your repository link under the relevant category. The available categories are:
android
magisk-xposed
linux
windows
misc
The format for adding a new repository is:
"category": [ "owner/repo_name", "owner/another_repo" ]
For example:
"linux": [ "yourgithubusername/yourlinuxrepo" ]
- Open the
-
Submit a Pull Request (PR):
-
Commit your changes and push them to your forked repository:
git add repos.json git commit -m "Added repo to linux category" git push origin main
-
Go to your forked repository on GitHub and click the "Pull Request" button.
-
Submit your pull request to this repository with a brief description of the changes.
-
By contributing repositories, you're helping grow a valuable resource for users and developers who want to stay updated on new releases in various categories. The bot uses this list to notify specific communities (e.g., Android, Linux, Windows, etc.) about updates that they care about, making open-source contributions more visible and accessible.
Your contribution supports:
- Open-source engagement: Keep communities informed of the latest features and fixes.
- Community collaboration: Share and discover new projects across github and let every know about it.
Thank you for helping make this project better!