File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -355,15 +355,21 @@ class CtxAccessExpr extends ExprAccessExpr {
355
355
abstract Expression getRefExpr ( ) ;
356
356
}
357
357
358
- private string stepsCtxRegex ( ) { result = "steps\\.([A-Za-z0-9_-]+)\\.outputs\\.([A-Za-z0-9_-]+)" }
358
+ private string stepsCtxRegex ( ) {
359
+ result = "\\bsteps\\.([A-Za-z0-9_-]+)\\.outputs\\.([A-Za-z0-9_-]+)\\b"
360
+ }
359
361
360
- private string needsCtxRegex ( ) { result = "needs\\.([A-Za-z0-9_-]+)\\.outputs\\.([A-Za-z0-9_-]+)" }
362
+ private string needsCtxRegex ( ) {
363
+ result = "\\bneeds\\.([A-Za-z0-9_-]+)\\.outputs\\.([A-Za-z0-9_-]+)\\b"
364
+ }
361
365
362
- private string jobsCtxRegex ( ) { result = "jobs\\.([A-Za-z0-9_-]+)\\.outputs\\.([A-Za-z0-9_-]+)" }
366
+ private string jobsCtxRegex ( ) {
367
+ result = "\\bjobs\\.([A-Za-z0-9_-]+)\\.outputs\\.([A-Za-z0-9_-]+)\\b"
368
+ }
363
369
364
- private string envCtxRegex ( ) { result = "env\\ .([A-Za-z0-9_-]+)" }
370
+ private string envCtxRegex ( ) { result = "\\benv\\ .([A-Za-z0-9_-]+)\\b " }
365
371
366
- private string inputsCtxRegex ( ) { result = "inputs\\ .([A-Za-z0-9_-]+)" }
372
+ private string inputsCtxRegex ( ) { result = "\\binputs\\ .([A-Za-z0-9_-]+)\\b " }
367
373
368
374
/**
369
375
* Holds for an expression accesing the `steps` context.
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ private class ExternallyDefinedSource extends RemoteFlowSource {
137
137
}
138
138
139
139
/**
140
- * Composite action input sources
140
+ * An input for a Composite Action
141
141
*/
142
142
private class CompositeActionInputSource extends RemoteFlowSource {
143
143
CompositeActionStmt c ;
You can’t perform that action at this time.
0 commit comments