From bb2f8cdd01987bfe0c28370816894f6fc27ff0bb Mon Sep 17 00:00:00 2001 From: Peter Braun Date: Thu, 9 Apr 2026 09:27:31 +0200 Subject: [PATCH] support bitbucket_dc webhooks --- awx_collection/plugins/modules/job_template.py | 2 +- awx_collection/plugins/modules/workflow_job_template.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx_collection/plugins/modules/job_template.py b/awx_collection/plugins/modules/job_template.py index 3ba9883f29..393d49ec11 100644 --- a/awx_collection/plugins/modules/job_template.py +++ b/awx_collection/plugins/modules/job_template.py @@ -436,7 +436,7 @@ def main(): scm_branch=dict(), ask_scm_branch_on_launch=dict(type='bool'), job_slice_count=dict(type='int'), - webhook_service=dict(choices=['github', 'gitlab', '']), + webhook_service=dict(choices=['github', 'gitlab', 'bitbucket_dc', '']), webhook_credential=dict(), labels=dict(type="list", elements='str'), notification_templates_started=dict(type="list", elements='str'), diff --git a/awx_collection/plugins/modules/workflow_job_template.py b/awx_collection/plugins/modules/workflow_job_template.py index 8d3792e0ac..9705fdc645 100644 --- a/awx_collection/plugins/modules/workflow_job_template.py +++ b/awx_collection/plugins/modules/workflow_job_template.py @@ -828,7 +828,7 @@ def main(): ask_inventory_on_launch=dict(type='bool'), ask_scm_branch_on_launch=dict(type='bool'), ask_limit_on_launch=dict(type='bool'), - webhook_service=dict(choices=['github', 'gitlab']), + webhook_service=dict(choices=['github', 'gitlab', 'bitbucket_dc']), webhook_credential=dict(), labels=dict(type="list", elements='str'), notification_templates_started=dict(type="list", elements='str'),