n8n Workflow
Beginner

Create and Get Sentry Releases

Automate your Sentry.io release management. This workflow allows you to create a new release and then immediately fetch a complete list of all releases for your organization.

Overview

A simple workflow to programmatically create a new release in Sentry and then retrieve a list of all existing releases, perfect for CI/CD pipelines or administrative tasks.

🤖 Sentry Release Management Workflow

This workflow provides a straightforward way to manage your software releases in Sentry.io. It first creates a new release and then retrieves a list of all existing releases for your organization.

How It Works:

  1. Manual Trigger: The workflow is initiated by manually clicking the 'execute' button.
  2. Create Sentry Release: The first Sentry.io node is configured to perform the create operation for the release resource. This registers a new version (e.g., 0.0.1) in your specified Sentry project.
  3. Get All Releases: Once the new release is created, the workflow proceeds to the second Sentry.io node. This node is configured to getAll releases, fetching a complete list of every release associated with your Sentry organization.

Use Cases:

  • CI/CD Integration: You can adapt this workflow to be triggered by a webhook from your deployment pipeline. After a successful build, it can automatically create the corresponding release in Sentry.
  • Release Auditing: Quickly generate a comprehensive list of all deployed versions for auditing, reporting, or review purposes.
  • Developer Utility: Provides a simple interface within n8n for developers to manage releases without needing to navigate the Sentry UI for these specific tasks.

Instructions

Basic steps

  1. Download workflow JSON
  2. Import into n8n
  3. Configure node parameters as needed
  4. Test and enable the workflow

💡 Tips

After importing, verify all connectors and credentials match your environment.

Preview

Workflow Visualization

3 nodes
100%
On clicking 'execute'manualTriggerSentry.iosentryIoSentry.io1sentryIo

Nodes

1

On clicking 'execute'

manualTrigger

v1
2

Sentry.io

sentryIo

v1
3

Sentry.io1

sentryIo

v1

Statistics

Total nodes:3
Disabled nodes:0
Node types:2
Connections:2
View full JSON structure
{
  "nodes": [
    {
      "name": "On clicking 'execute'",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        210,
        300
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "name": "Sentry.io",
      "type": "n8n-nodes-base.sentryIo",
      "position": [
        410,
        300
      ],
      "parameters": {
        "url": "",
        "version": "0.0.1",
        "projects": [
          ""
        ],
        "resource": "release",
        "operation": "create",
        "additionalFields": {},
        "organizationSlug": ""
      },
      "credentials": {
        "sentryIoApi": "sentry"
      },
      "typeVersion": 1
    },
    {
      "name": "Sentry.io1",
      "type": "n8n-nodes-base.sentryIo",
      "position": [
        610,
        300
      ],
      "parameters": {
        "resource": "release",
        "operation": "getAll",
        "returnAll": true,
        "additionalFields": {},
        "organizationSlug": ""
      },
      "credentials": {
        "sentryIoApi": "sentry"
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "Sentry.io": {
      "main": [
        [
          {
            "node": "Sentry.io1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "On clicking 'execute'": {
      "main": [
        [
          {
            "node": "Sentry.io",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Actions

Share
Categories:
Tags:
manualtriggersentryio

Technical Specs

Complexity:
Beginner
Node Count:
3 nodes
Published:11 months ago
Updated:about 22 hours ago

Compatibility

Platform:
N8N Cloud & Self-hosted
Min Version:
N8N v1.0.0+
Supports cloud and self-hosted deployment

License

This workflow template follows MIT license, you can freely use, modify and distribute.

Please comply with relevant third-party service terms when using.

Related Workflows