-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: event descriptions #98
Conversation
index.json
Outdated
"actions": [ | ||
"completed", | ||
"created", | ||
"requested_action", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm looking into why this is happening
index.json
Outdated
"actions": [ | ||
"assigned", | ||
"closed", | ||
"edited", | ||
"labeled", | ||
"locked", | ||
"merged", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gr2m this one got added too FYI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah thanks for the pointer, merged
is not a valid action
@zeke I mentioned this to @gr2m and it sounded like it wouldn't impact this work significantly, but I've moved and reworked that page a bit in https://github.com/github/internal-developer.github.com/pull/6352. I'm hoping to ship that this week, but I can hold on shipping it if it will cause significant changes to your work here. |
… `pull_request.merged`
Thanks for the heads-up @rachmari. I will defer to Gregor's judgement on that. |
e06f885
to
70d24e6
Compare
🎉 This PR is included in version 3.8.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
That was quick! Thanks for the cleanup @gr2m 🙌 |
This PR updates the build process to extract descriptions from the events listed at https://developer.github.com/v3/activity/events/types/
Notes:
turndown
, following prior art from other Octokit projects/v3
are rewritten as fully-qualifieddeveloper.github.com
URLsajv
to validate the shape of each extracted webhook object.section-to-webhook.js
to make it easier to read and refine. I was also able to remove some workarounds around quoted action names that were no longer necessary.pull_request.synchronize
which is no longer needed.cc @rachmari @sarahs @bswinnerton @JasonEtco
Resolves #89