Conversation
|
Thank you for your contribution. unfortunately, one or more of your commits are missing the required "Signed-off-by:" statement. Signing off is part of the Developer Certificate of Origin (DCO) which is used by this project. Read the DCO and project contributing guide carefully, and amend your commits using the git CLI. Note that this does not require any cryptography, keys or special steps to be taken. 💡 Shall we fix this?This will only take a few moments. First, clone your fork and checkout this branch using the git CLI. Next, set up your real name and email address:
Finally, run one of these commands to add the "Signed-off-by" line to your commits. If you only have one commit so far then run: Check that the message has been added properly by running "git log". |
Signed-off-by: Martin Wohlfart <github@wohlf.art>
Thank you for a very nice tool!
Motivation
For my part I'm interested in looking only at some actions (the slowest and most important ones). If I look at all actions then the average time is very fast but I'm more interested in filtering it down to only our critical GitHub actions.
Implementation
As far as I could tell it wasn't possible given the SDK to filter by name directly, so we still have to fetch all actions and then filter them afterwards. I tried making the code as similar as possible to the rest.
I did not add anything to the
README.mdas I wasn't sure if that was desirable or not. It's discoverable using-helpand maybe that is enough?