add a few Github Actions entries to the cheat sheet

This commit is contained in:
Will Merfalen
2022-01-26 07:19:54 +00:00
committed by AJ ONeal
parent 3efb343b94
commit bcc3c2bbc6
+22
View File
@@ -20,6 +20,28 @@ Installation:
- For linux Installation on specific distribution
[linux](https://github.com/cli/cli/blob/trunk/docs/install_linux.md)
### Actions
Get a status of the most recently ran Actions workflows.
```bash
gh run list
```
View why a specific run failed.
```bash
gh view N
```
- where N is your failed job ID (third from the right column)
Rerun a specific workflow that failed.
```bash
gh rerun N
```
- where N is your failed job ID (third from the right column)
### Authentication
Authenticate with your Github account.