{"id":25039502,"url":"https://github.com/nexoslabs/bot-github-template","last_synced_at":"2026-02-01T23:01:47.679Z","repository":{"id":247072057,"uuid":"824942798","full_name":"nexoscreation/bot-github-template","owner":"nexoscreation","description":"Automation bot for github , under maintaince","archived":false,"fork":false,"pushed_at":"2024-12-11T06:56:34.000Z","size":17132,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-05T00:29:04.175Z","etag":null,"topics":["bot","github-bot","node-js","typescript"],"latest_commit_sha":null,"homepage":"https://github.com/apps/nexos-bot","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nexoscreation.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-06T11:00:28.000Z","updated_at":"2025-01-18T17:54:21.000Z","dependencies_parsed_at":"2024-12-11T07:18:49.442Z","dependency_job_id":"f171393e-d7b3-474d-aa9d-964427bd92c7","html_url":"https://github.com/nexoscreation/bot-github-template","commit_stats":null,"previous_names":["nexoscreator/bot-nexos-app","nexoscreator/bot-github-starter","nexoscreation/bot-github-template"],"tags_count":5,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexoscreation%2Fbot-github-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexoscreation%2Fbot-github-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexoscreation%2Fbot-github-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexoscreation%2Fbot-github-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nexoscreation","download_url":"https://codeload.github.com/nexoscreation/bot-github-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237407962,"owners_count":19305193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bot","github-bot","node-js","typescript"],"created_at":"2025-02-06T02:52:07.270Z","updated_at":"2026-02-01T23:01:47.667Z","avatar_url":"https://github.com/nexoscreation.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Probot](https://img.shields.io/badge/Built%20with-Probot-blue.svg)](https://probot.github.io/)\n[![TypeScript](https://badgen.net/badge/Built%20with/TypeScript/blue)](https://www.typescriptlang.org/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE.md)\n\n# 🚀 GitHub Bot Template\n\n\u003e This repository provides a robust template for building your own GitHub bot using [Probot](https://probot.github.io/) and TypeScript. The bot automates common workflows like handling issues, pull requests, and notifications while being highly extensible.\n\n---\n\n## 🎯 Features\n\n- 📝 **Issue Automation**: Automatically triage issues with labels, comments, and assignments.\n- 🔍 **Pull Request Workflow**: Streamline code reviews with reviewer assignment, comments, and more.\n- 📣 **Notifications**: Notify contributors and maintainers about important events.\n- 🔧 **Extensible and Modular**: Easily add new functionality with a service-based architecture.\n- 🌟 **TypeScript Support**: Take advantage of type safety and modern JavaScript features.\n\n---\n\n## 🚀 Getting Started\n\nFollow these steps to get your bot up and running:\n\n### **Clone the Repository**\n```bash\ngit clone https://github.com/nexoslabs/bot-github-template.git\ncd bot-github-template\n```\n\n### **Install Dependencies**\n```bash\nnpm install\n```\n\n### **Set Up Environment Variables**\nCreate a `.env` file based on the provided `.env.example`:\n```plaintext\nAPP_ID=your_app_id\nPRIVATE_KEY=path_to_private_key.pem\nWEBHOOK_SECRET=your_webhook_secret\nGITHUB_TOKEN=your_personal_access_token\n```\n\n### **Run the Bot**\n```bash\nnpm start\n```\n\n### **Expose the Bot (Optional)**\nUse a tool like [ngrok](https://ngrok.com/) to expose your bot locally:\n```bash\nngrok http 3000\n```\n\n---\n\n## 🛠️ Development\n\n### 🧪 **Testing**\nWrite unit and integration tests to ensure the bot works as expected:\n- Unit tests are located in `test/unit/`.\n- Integration tests are located in `test/integration/`.\n\nRun tests with:\n```bash\nnpm test\n```\n\n### 🛡️ **Linting**\nEnsure code quality using ESLint:\n```bash\nnpm run lint\n```\n\n### 🏗️ **Build**\nCompile the TypeScript code to JavaScript:\n```bash\nnpm run build\n```\n\n---\n\n## 🤝 Contributing\n\nWe ❤️ contributions! Follow these steps to contribute:\n\n1. 🍴 **Fork** the repository\n2. 🌿 **Create** a new branch (`git checkout -b feature/AmazingFeature`)\n3. 💾 **Commit** your changes (`git commit -m 'Add some AmazingFeature'`)\n4. 🚀 **Push** to the branch (`git push origin feature/AmazingFeature`)\n5. 🔃 **Open a Pull Request**\n\n---\n\n## 💡 Acknowledgments\n\n- Thanks to the [Probot](https://probot.github.io/) team for their amazing framework.\n- Inspired by the open-source community.\n\n---\n\n## 📄 License\n\nThis project is licensed under **The UnLicense** See the [LICENSE](LICENSE) file for details.\n\n---\n\n## 📬 Contact \u0026 Community\n\n💬 Join us on **Discord**: [Click Here](https://discord.gg/H7pVc9aUK2)  \n🐦 **Follow on Twitter**: [@nexoslabs](https://twitter.com/nexoslabs)  \n📧 **Email**: [contact@nexoscreation.tech](mailto:contact@nexoscreation.tech)\n\n\u003cp align=\"center\"\u003e\n  Made with ❤️ by the \u003ca href=\"https://github.com/nexoslabs\"\u003e@nexoslabs\u003c/a\u003e Team\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/nexoslabs/discord-24-7-rich-presence/stargazers\"\u003e⭐ Star us on GitHub!\u003c/a\u003e\n\u003c/p\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexoslabs%2Fbot-github-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnexoslabs%2Fbot-github-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexoslabs%2Fbot-github-template/lists"}