diff options
Diffstat (limited to 'gitautodeploy/parsers')
-rw-r--r-- | gitautodeploy/parsers/bitbucket.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/generic.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/github.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/gitlab.py | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/gitautodeploy/parsers/bitbucket.py b/gitautodeploy/parsers/bitbucket.py index 791b491..d1dc095 100644 --- a/gitautodeploy/parsers/bitbucket.py +++ b/gitautodeploy/parsers/bitbucket.py @@ -34,4 +34,4 @@ class BitBucketRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action
\ No newline at end of file + return repo_configs, ref or "master", action, repo_urls
\ No newline at end of file diff --git a/gitautodeploy/parsers/generic.py b/gitautodeploy/parsers/generic.py index 7c7c7f5..6dede03 100644 --- a/gitautodeploy/parsers/generic.py +++ b/gitautodeploy/parsers/generic.py @@ -27,4 +27,4 @@ class GenericRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action
\ No newline at end of file + return repo_configs, ref or "master", action, repo_urls
\ No newline at end of file diff --git a/gitautodeploy/parsers/github.py b/gitautodeploy/parsers/github.py index 028663d..d95a1de 100644 --- a/gitautodeploy/parsers/github.py +++ b/gitautodeploy/parsers/github.py @@ -42,4 +42,4 @@ class GitHubRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action
\ No newline at end of file + return repo_configs, ref or "master", action, repo_urls
\ No newline at end of file diff --git a/gitautodeploy/parsers/gitlab.py b/gitautodeploy/parsers/gitlab.py index 580fed2..6c9a8d4 100644 --- a/gitautodeploy/parsers/gitlab.py +++ b/gitautodeploy/parsers/gitlab.py @@ -37,7 +37,7 @@ class GitLabRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action + return repo_configs, ref or "master", action, repo_urls class GitLabCIRequestParser(WebhookRequestParser): @@ -71,4 +71,4 @@ class GitLabCIRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action
\ No newline at end of file + return repo_configs, ref or "master", action, repo_urls
\ No newline at end of file |