{
  "name": "Route New GitLab Issues Straight Into Jira",
  "nodes": [
    {
      "name": "GitLab — New Issue",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "parameters": {
        "method": "POST",
        "url": "https://api.example.com/replace-with-real-endpoint",
        "sendBody": true,
        "options": {}
      },
      "notes": "GitLab has no dedicated n8n node — use an HTTP Request to the GitLab API. Trigger on new issues/errors.",
      "position": [
        260,
        300
      ]
    },
    {
      "name": "Extract Issue",
      "type": "n8n-nodes-base.set",
      "typeVersion": 3,
      "parameters": {
        "assignments": {
          "assignments": [
            {
              "id": "1133",
              "name": "title",
              "value": "={{ $json.title }}",
              "type": "string"
            },
            {
              "id": "1134",
              "name": "severity",
              "value": "={{ $json.severity }}",
              "type": "string"
            },
            {
              "id": "1135",
              "name": "link",
              "value": "={{ $json.url }}",
              "type": "string"
            }
          ]
        },
        "options": {}
      },
      "notes": "",
      "position": [
        500,
        300
      ]
    },
    {
      "name": "Jira — Create Item",
      "type": "n8n-nodes-base.jira",
      "typeVersion": 1,
      "parameters": {
        "operation": "create"
      },
      "notes": "Create a tracked item.",
      "position": [
        740,
        300
      ]
    },
    {
      "name": "Respond / Finish",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "parameters": {},
      "notes": "End of flow — extend with extra steps as needed.",
      "position": [
        980,
        300
      ]
    }
  ],
  "connections": {
    "GitLab — New Issue": {
      "main": [
        [
          {
            "node": "Extract Issue",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Extract Issue": {
      "main": [
        [
          {
            "node": "Jira — Create Item",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Jira — Create Item": {
      "main": [
        [
          {
            "node": "Respond / Finish",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
