BuildFunctionCall creates a function call node
(functionName string, args ...ConditionNode)
| 329 | |
| 330 | // BuildFunctionCall creates a function call node |
| 331 | func BuildFunctionCall(functionName string, args ...ConditionNode) *FunctionCallNode { |
| 332 | return &FunctionCallNode{FunctionName: functionName, Arguments: args} |
| 333 | } |
| 334 | |
| 335 | // BuildNotFromFork creates a condition to check that a pull request is not from a forked repository |
| 336 | // This prevents the job from running on forked PRs where write permissions are not available |
no outgoing calls