-
Notifications
You must be signed in to change notification settings - Fork 30
Description
Recently Travis CI has shown levels of service degradation, including unnecessarily long queue times (> 1 hr) and future plans on more restrictions. On the other hand, GitHub Actions is supported by Microsoft and is believed to be more reliable in terms of usage (free forever for public repositories).
When GHA was originally introduced near the end of last year, it lacked many features so we couldn't switch. Now there is API to trigger workflows manually, it's time that we make this switch.
I have a GHA workflow file for this repo already, and the only thing left to do is to update whatever webhook receiver we have for Smokey and MS wikis to utilize the GH API. An example is provided below which is very easy to understand and port to Ruby.
curl -X POST \
-d '{"ref": "site"}' \
-H 'Accept: application/vnd.github.v3+json' \
-H 'Authorization: token helloworld' \
https://api.github.com/repos/Charcoal-SE/charcoal-se.github.io/actions/workflows/build.yml/dispatchesExtra: Shall we move the wiki webhook receiver out from MS and put it on AWS Lambda for easier maintenance?