Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions protos/configs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,11 @@ message ActionConfig {
// If unset, the value from workflow_settings.yaml is used. If neither is set, default BigQuery behavior applies.
// Dataform CLI only (GCP Dataform support pending).
string reservation = 11;

// Optional. Path to the user-visible source declaration for this action,
// when distinct from `filename`. If unset, consumers should treat
// `filename` as the source.
string original_file_path = 12;
}

message OperationConfig {
Expand Down
5 changes: 5 additions & 0 deletions protos/core.proto
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,11 @@ message Assertion {
// Generated.
string file_name = 7;

// Optional. Path to the user-visible source declaration for this action,
// when distinct from `file_name`. If unset, consumers should treat
// `file_name` as the source.
string original_file_path = 17;

reserved 1, 2, 4, 5, 6;
}

Expand Down
5 changes: 5 additions & 0 deletions protos/execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ message ExecutionAction {

string jit_code = 12;

// Optional. Path to the user-visible source declaration for this action,
// when distinct from `file_name`. If unset, consumers should treat
// `file_name` as the source.
string original_file_path = 13;

reserved 1, 3, 7;
}

Expand Down
Loading