...
...
...
...
...
...
...
...
...
...
Warning |
---|
Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here ! |
Contents
Table of Contents |
---|
Excerpt |
---|
Starting with version 4.0.13 of the Power Scripts™, we 've have added the ability to use SIL™ scripts in order to send a message messages to Stride or and Slack. |
Specific SIL™ integrations
...
To configure an integration, perform the following actionsoperations:
- In your Jira, go to Manage add-onsapps > cPrime Plugin Configuration > Integration Configurations, and click Add Integration.
- Fill in the necessary fields:
- Name - the name Name of the integration, it should be unique from other integrations
- Type - the integration Integration type
- Access token
- Conversation URL - you need to specify this for Stride integration only
- Save the integration. After saving the added integration, a new entry is added to the table on the Integration Configurations page.
To edit or remove a configuration, click Edit/Delete.
Info |
---|
For security reasons, on the cloud version the token is only visible at the creation moment, not after. |
Configuring notifications to go from Jira to Stride
In order to send a message to a Stride room, add an integration on to the Integration Configurations page. To generate an access token and a conversation URL you have to:
...
In order to send a message to a Slack room, add an integration configuration on to the Integration Configurations page using new Slack apps functionality. The access token can be a bot, a workspace, or a user token. If you want to create a bot for your workspaceTo get an access token, perform the following stepsoperations:
- Navigate to the Bots page in the Slack App Directory.
- Click Add Configuration.
- Choose a username for your bot and add the bot integration.
Copy the access token to the Integration Configurations page and Save.
Now your configuration is ready to be used in a scriptSlack API page. - Click Your Apps > Create New App.
- Go to your app and click Add Features and functionality.
- Go to Permissions > Scopes and select what this app is going to do. Click Save Changes.
Go to Permissions > OAuth & Permissions. Install your app to the workspace. When you install the app, the tokens are automatically generated. Otherwise, in order to generate your OAuth tokens, request the approval to install this app on your workspace. Click Request Approval to send the request to Slack admins.
Optionally, you can Manage distribution for your app and enable other workspaces to install your app using OAuth.
Copy the OAuth Access Token to the Integration Configurations page and Save.
That's it. Your configuration is ready.
Info You can read more about how to create/regenerate tokens for internal integrations in Slack here.
Examples
Send a message to Slack when a ticket is created
To send a message to Slack when an issue is created, add a post-function on the create transition in Jira with the following code:
Code Block |
---|
JSlackAttachment issueatt1; issueatt1.pretext = key.reporter + " created:"Optional text that appears above the attachment block"; issueatt1.title = key"This is an example of attachment ..."; issueatt1.title_link =getIssueURL(key); issue.text = key.summary; JSlackMessage message; message.channel = "C94S1U658"; // Channel, private group, or IM channel to send message to. Can be an encoded ID, or a nametext = "*Bold* ~strike~ text"; att1.color = "#4286f4"; JSlackAttachment att2; att2.title = "This is an example of attachment with code."; att2.text = "`var i = 0; doSomethingWith(i);`"; att2.color = "#f45641"; JSlackMessage message; message.channel = "C9S2LC24T"; message.text = "Test slack message with attachment..."; message.attachments = {issueatt1, att2}; return sendIntegrationMessage("SLACK", message); |
Here's an example of how such notification can look like in Slack.
...
Send a message to Stride when an issue is created
...