GitHub Recipies

The following examples depend on having the GitHub CLI installed.

Create a GitHub issue with a replay in the description

Just run into a bug? Capture it and open an issue that includes a video replay with one command.

$ gh issue create -w -t "Title" -b "`dashcam --md`"

Create a GitHub issue with a replay and system logs

Need more context than just a video? This single command will create a GitHub issue with a video replay and the mac system logs.

gh issue create -w -t "Title" -b "`cat /var/log/system.log | dashcam --md`"

We recommend forking this command and replacing the system logs with your application logs.

Create a GitHub pull request with a replay in the description

Handy for demoing your newest feature to your team. You probably did some acceptance testing right before you're ready to open a pull, the following command will let you attach your local testing to your pull request.

$ gh pr create -w -t "Title" -b "`dashcam --md`"

Last updated