Availability
This routine is available starting with Power Scripts™ for Jira 3.0.8.
Syntax
runJobIn(silFile, args, interval)
Description
Runs a job in a specified interval.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
scriptPath | string | Yes | The source of the script to be executed. |
args | array string | Yes | The list of the arguments of the job. |
interval | int | Yes | The interval |
Return type
none
The returned value has no meaning.
Example
string[] args = {key, project}; //assume we're in the context of an issue interval varInterval = "30m"; runJobIn("script.sil", args, varInterval);
The example above will create a job that will run the script "script.sil" after 30 minutes. (the script will run only once)
For the scriptPath parameter you can either give the relative path (as in the example above), or the absolute path:
C:/Program Files/Atlassian/Application Data/JIRA/silprograms/script.sil.
In "script.sil" you can access the args using the next syntax:
string issueKey = argv[0];
See also