Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
string[] args = {issueTypekey, 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:

Code Block
string issueKey = argv[0];

 

See Also:

Filter by label (Content by label)
cqllabel = "scheduler_routines"
labelsscheduler_routines

...