| 93 | * Context used for the analyze commits step. |
| 94 | */ |
| 95 | export interface AnalyzeCommitsContext extends VerifyConditionsContext { |
| 96 | /** |
| 97 | * List of commits taken into account when determining the new version. |
| 98 | */ |
| 99 | commits: ReadonlyArray<Commit>; |
| 100 | |
| 101 | /** |
| 102 | * List of releases |
| 103 | */ |
| 104 | releases: ReadonlyArray<Release>; |
| 105 | |
| 106 | /** |
| 107 | * Last release |
| 108 | */ |
| 109 | lastRelease: LastRelease; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Context used for the verify release step. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…