We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c7eecf commit af83d8aCopy full SHA for af83d8a
javascript/ql/lib/semmle/javascript/Actions.qll
@@ -234,9 +234,10 @@ module Actions {
234
/** Gets the 0-based position of this step within the sequence of `steps`. */
235
int getIndex() { result = index }
236
237
- /** Gets the job this step belongs to. */
+ /** Gets the `job` this step belongs to. The step may belong to a `job` in a workflow or `runs` in a custom action. */
238
Job getJob() { result = parent.(Job) }
239
240
+ /** Gets the `runs` this step belongs to. The step may belong to a `job` in a workflow or `runs` in a custom action. */
241
Runs getRuns() { result = parent.(Runs) }
242
243
/** Gets the value of the `uses` field in this step, if any. */
0 commit comments