GitHubActions represents a GitHub Actions workflow. @see https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
| 25 | // GitHubActions represents a GitHub Actions workflow. |
| 26 | // @see https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions |
| 27 | type GitHubActions struct { |
| 28 | Name string `yaml:",omitempty"` |
| 29 | On map[string]GitHubActionsTrigger `yaml:",omitempty"` |
| 30 | Jobs map[string]GitHubActionsJob `yaml:",omitempty"` |
| 31 | } |
| 32 | |
| 33 | type GitHubActionsTrigger struct { |
| 34 | Branches []string `yaml:",omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected