After much thought and consideration, we have decided to officially sunset Aurora Editor.
Aurora started as a community-driven effort to build a fast, lightweight, and truly native IDE for macOS developers. It grew out of passion, collaboration, and a shared vision for an open alternative. Along the way, contributors poured in their time, energy, and creativity to shape what Aurora became.
But as with all projects, there comes a time to reflect on sustainability and focus. With limited resources, shifting priorities, and new tools emerging in the developer ecosystem, we believe it’s the right moment to bring Aurora Editor’s journey to a graceful close.
The code will remain available on GitHub for anyone who wishes to explore, fork, or continue the vision in new directions. We deeply appreciate everyone who wrote code, opened issues, shared feedback, or simply used Aurora in their daily work-you kept the project alive and meaningful.
Thank you for being part of Aurora’s story!
Even though Aurora Editor is setting, the light it inspired will live on in the community.
— The Aurora Editor Team (@0xWDG & @nanashili).
This is the repository for the Aurora Editor GitHub Webhook bot.
The bot is used to automate some tasks in the AuroraEditor organization.
- Automatically add the PR creator as a assignee & set the correct milestone.
- Respond on a issue with a comment
- Review on request.
create a config.php file in the root directory with the following contents:
<?php
$settings = array(
"username" => "my-bot-name",
"admins" => array(
"0xWDG",
"my-bot-name"
),
"github_token" => "GITHUB TOKEN",
"discord_webhook" => "DISCORD WEBHOOK",
"serverURL" => "Https url for debugging"
);Note
Change all values to your own settins/values.
Upload this to your server and serve it with PHP.
This section tells you how to test different payloads.
Note
Some payloads may not work in your environment.
if you have not the correct rights to AuroraEditor/Aurora-Editor-Bot.
sh test_all_payloads.shThis simulates a new issue Aurora-Editor-Bot #24.
php index.php issue.jsonThis simulates a new comment in Aurora-Editor-Bot #24 saying @aurora-care-bear please assign me.
php index.php please_assign_me.jsonThis simulates a new PR Aurora-Editor-Bot #25.
php index.php pr.jsonThis simulates a new comment in Aurora-Editor-Bot #25 from an admin saying @aurora-care-bear please accept this pr..
Warning
This will not execute ifmy-bot-nameis not an admin.
php index.php accept_pr.json