From 68415694d2317dbf3e4234b25c807ef1c29e7d6f Mon Sep 17 00:00:00 2001 From: ethan-linearb Date: Mon, 3 Nov 2025 13:32:09 +0000 Subject: [PATCH] Update README.md --- docs/integrations/jira/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/jira/README.md b/docs/integrations/jira/README.md index d4db1e1f6..1b68c4b94 100644 --- a/docs/integrations/jira/README.md +++ b/docs/integrations/jira/README.md @@ -49,9 +49,9 @@ If you want to build gitStream automations to interact with the Jira API or Jira Learn more about working with incoming webhooks in the Jira docs - Next, in GitHub, create an organization secret to store your Jira webhook URL and pass it to gitStream's [`env` context variable](/context-variables/#env) by adding a line to `.github/workflows/gitstream.yml` inside your repo. Make sure to give this a unique name, such as `JIRA_CREATE_ISSUE_WEBHOOK: ${{ secrets.JIRA_CREATE_ISSUE_WEBHOOK }}`. + Next, in GitHub, create an organization secret to store your Jira webhook URL and secret and pass these to gitStream's [`env` context variable](/context-variables/#env) by adding lines to `.github/workflows/gitstream.yml` inside your repo. Make sure to give these a unique name, such as `JIRA_CREATE_ISSUE_WEBHOOK: ${{ secrets.JIRA_CREATE_ISSUE_WEBHOOK }}` and `JIRA_CREATE_ISSUE_SECRET: ${{ secrets.JIRA_CREATE_ISSUE_SECRET }}`. -Once finished, you can use the `env.JIRA_CREATE_ISSUE_WEBHOOK` context variable inside CM files to send HTTP requests to Jira from your GitHub repo. For an example of how to do this, check out the [create Jira issue](/automations/integrations/jira/create-jira-issue) automation. +Once finished, you can use the `env.JIRA_CREATE_ISSUE_WEBHOOK` and `env.JIRA_CREATE_ISSUE_SECRET` context variables inside CM files to send HTTP requests to Jira from your GitHub repo. For an example of how to do this, check out the [create Jira issue](/automations/integrations/jira/create-jira-issue) automation. ### Connect to the Jira API