starting on core

This commit is contained in:
Bryan MacFarlane
2019-05-16 23:36:45 -04:00
parent 917c389219
commit 780a5985b4
7 changed files with 154 additions and 92 deletions
+8 -12
View File
@@ -1,17 +1,5 @@
export interface FileDetails {
/**
* Full path to the file causing the issue.
* Note: the agent will translate to the proper repo when posting
* the issue back to the timeline
*/
File: string,
Line: number,
Column: number
}
/**
* The code to exit an action
* Spec: https://github.com/github/dreamlifter/blob/master/docs/actions-model.md#exit-codes
*/
export enum ExitCode {
/**
@@ -28,4 +16,12 @@ export enum ExitCode {
* A code indicating that the action is complete, but neither succeeded nor failed
*/
Neutral = 78
}
/**
* Interface for exportVariable options
*/
export interface ExportOptions {
/** Optional. Whether the variable should be marked as secret (will be masked from logs). Defaults to false */
isSecret?: boolean;
}