highfive
highfive copied to clipboard
Github hooks to provide an encouraging atmosphere for new contributors
If a review is left with "request changes", we should be able to remove labels and apply new ones.
We should add some logging to figure out whether it's github API-related or failure to parse the logs or something else.
https://github.com/servo/highfive/blob/master/handlers/homu_status/__init__.py#L27-L37 looks for a buildbot job that fails, then finds the stdio log for the failed job and prints that. For jobs like the bluetooth tests that fail if a...
This will make it possible to run as part of the servo infrastructure, rather than on my personal web host.
This will make finding out the status of taskcluster jobs much easier, even compared to the current buildbot setup.
https://github.com/blog/2392-introducing-code-owners
https://github.com/servo/highfive/blob/master/handlers/homu_status/__init__.py#L28-L37 looks for the step marked as failed and grabs the stdout for it. However, since the introduction of `./mach filter-intermittents` and `--no-fail` for `test-wpt`, highfive is now grabbing the...
Added a check to exclude hidden files like '.DS_Store' in mac.
We probably should do so.