In this page
Running a Groovy script when a commit is accepted
This automation runs a Groovy script, optionally parsing parameters from the VCS commit message and passing those to the script.
Configuration
- Login to Jira as admin, go to Administration → System → Automation rules.
- Click Create rule.
- Select the trigger Genius Commit created (from the DevOps category).
- Choose the command Run code, and click Save.
- Click New action.
- Select the action Run Groovy script.
- Enter a one-line description in the Summary field.
- Enter the script code in the Script field.
-
If you use are using a command configured with a parameter pattern and the parameter arg was successfully parsed, you can access its value using this expression:
## use the parameter's name in the suffix (last item) def x = devops.arg
- To access smart values, use this syntax. (The {{...}} syntax doesn't work in Groovy scripts.)
-
If you use are using a command configured with a parameter pattern and the parameter arg was successfully parsed, you can access its value using this expression:
- Click Save.
- Name your automation rule intuitively, and click Turn it on.
Usage
-
Enter this inline Groovy script in your automation action:
auditLog.info("Groovy script started with the argument: ${devops.arg}")
(It just writes a log line to the automation action's audit log and demonstrates how to access the parameter value.) -
Create a commit with this commit message:
Fix the FOO-1 bug. @run foobar
- The Groovy script will be run with the parameter passed to it.
-
The following message will appear in the automation action's audit log:
Groovy script started with the argument: foobar
Troubleshooting
If you don't get the expected results:
- Check if the @run command is defined in the Genius Commands screen? (It's a default command.)
- Check if the @run command followed by the command parameter was included in the commit message?
- See the general troubleshooting steps.
Questions?
Ask us any time.