This is the repository referenced in my GitHub Actions talk. Feel free to reuse the example code provided.
This repository contains the code to run the following demos as part of my talk.
TODO
TODO
In this demo we will learn how to use Siri Shortcuts and the LUIS Cognitive Services API to automate the creation of a new "bug report" issue on your GitHub Project using voice recognignition and machine learning for automatic triaging.
Watch a prerecoreded demo video on my YouTube channel to see what this is about: https://youtu.be/CQnnlLfVhW0
Create your LUIS AI Cognitive Service Endpoint
Follow the instructions inside the LUIS folder.
Import the Siri Shortcut
To recreate this demo follow these steps:
- Fork this repository (https://github.com/pierluigi/my-actions-talk)
- Generate a new Personal Access Token with
repo
permissions https://github.com/settings/tokens - Download my Siri Shortcut by following this iCloud link on your iOS device: https://www.icloud.com/shortcuts/0f28733463b94c8fafda83c23801be4d
⚠️ Please note You may have to enable theAllow Untrusted Shortcuts
flag underSettings -> Shortcuts
on you iOS device if you are receiving an alert when trying to install my Shortcut. You will be able to review what my shortcut does before finally installing it.
You need to change the following values:
- Change
[USERNAME]
and[REPOSITORY]
with the corresponding values of your fork (e.g.pierluigi
andactions-demo
in this case) inside theURL
field. - Expand the
Get contents of URL
sectionShow More -> Headers - Authorization
and add the GitHub PAT you generated in step 2 above. - You can change the sentence to your own liking to trigger this shortcut. By default, it will respond to
Hey Siri – Create New Issue
. After a short pause, Siri will ask youWith what text?
. At this point you can commence the dictation of the issue description.
Done! Have fun filing bug reports using Siri ;)
Thanks to Bas Peters and Sebass Van Boxel