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:
- Manual Trigger: The workflow is initiated by manually clicking the 'execute' button.
- Create Sentry Release: The first
Sentry.ionode is configured to perform thecreateoperation for thereleaseresource. This registers a new version (e.g.,0.0.1) in your specified Sentry project. - Get All Releases: Once the new release is created, the workflow proceeds to the second
Sentry.ionode. This node is configured togetAllreleases, 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
- Download workflow JSON
- Import into n8n
- Configure node parameters as needed
- Test and enable the workflow
💡 Tips
After importing, verify all connectors and credentials match your environment.
Preview
Workflow Visualization
Nodes
On clicking 'execute'
manualTrigger
Sentry.io
sentryIo
Sentry.io1
sentryIo
Statistics
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
Technical Specs
Compatibility
License
This workflow template follows MIT license, you can freely use, modify and distribute.
Please comply with relevant third-party service terms when using.