state property
This action's current state.
Output only. Possible string values are:
- "PENDING" : The action has not yet been considered for invocation.
- "RUNNING" : The action is currently running.
- "SKIPPED" : Execution of the action was skipped because upstream dependencies did not all complete successfully. A terminal state.
- "DISABLED" : Execution of the action was disabled as per the configuration of the corresponding compilation result action. A terminal state.
- "SUCCEEDED" : The action succeeded. A terminal state.
- "CANCELLED" : The action was cancelled. A terminal state.
- "FAILED" : The action failed. A terminal state.
Implementation
core.String? state;