Skip to end of banner
Go to start of banner

runJobInAndRepeat

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Availability

This routine is available starting with Power Scripts for Jira 3.0.8.

Syntax

runJobInAndRepeat(silFile, args, interval)

Description

Runs a job every specified interval.

Parameters

Parameter name

Type

Required

Description

silFile

string

Yes

The sil file name.

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};
interval varInterval = "30m";
runJobInAndRepeat("script.sil", args, varInterval);

The example above will create a job that will run the script "script.sil" every 30 minutes.(the job running will repeat every 30 minutes)


In "script.sil" you can access the args using the next syntax:

string issueKey = argv[0];

 

See also

 

  • No labels