feat: Add Octopus Deploy integration + 2 components#3221
Merged
forestileao merged 1 commit intosuperplanehq:mainfrom Feb 25, 2026
Merged
feat: Add Octopus Deploy integration + 2 components#3221forestileao merged 1 commit intosuperplanehq:mainfrom
forestileao merged 1 commit intosuperplanehq:mainfrom
Conversation
bd9febe to
ad56868
Compare
ad56868 to
09c8bdf
Compare
09c8bdf to
c3314a7
Compare
Collaborator
|
@zakaneki looking good - moved to code review |
forestileao
reviewed
Feb 23, 2026
forestileao
reviewed
Feb 23, 2026
forestileao
reviewed
Feb 23, 2026
forestileao
reviewed
Feb 23, 2026
88510ff to
9c59377
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
- Adds base client with API Key auth and Space-level configuration - Adds 'On Deployment Event' trigger with webhook signature verification - Adds 'Deploy Release' action with dual output channels (success/failed) - Implements task polling fallback (30s interval) for reliable deployment tracking - Includes full integration documentation and JSON payload examples Signed-off-by: Andrija Zakić <[email protected]>
9c59377 to
ba2f18a
Compare
forestileao
approved these changes
Feb 25, 2026
Collaborator
|
@zakaneki All good. Tested and everything is working: Thanks for the contribution <3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Closes #2997
This PR adds a base integration with Octopus Deploy, allowing users to trigger workflows from deployment events and start release deployments directly from SuperPlane.
Demo
Loom walkthrough: https://www.loom.com/share/acf60dceb634468691c00f8f6a648bb4
Features
Authentication
X-Octopus-ApiKeyheader.Spaces-1).Trigger: On Deployment Event
SuperPlane-{webhookID}) to avoid collisions between workflow nodes.X-SuperPlane-Webhook-Secretto ensure payload authenticity.Action: Deploy Release
SuccessandFailedoutputs for conditional workflow branching.Technical Decisions
Polling fallback
Although Octopus supports task completion webhooks, a polling loop is implemented in the
Deploy Releaseaction to prevent workflows from hanging if a webhook is dropped. This aligns with other long-running integrations (e.g., Render).Isolated Subscriptions per trigger node
Each "On Deployment Event" node creates its own Subscription. This enables granular filtering (e.g., different environments per node) without cross-event noise.
How to Test
Prerequisites
ngrokfor local webhook testing.Configure Connection
Add a new Octopus connection.
Provide:
https://example.octopus.app)Test Trigger
Test Action