From 944e4c626acec430603b50da3c3b8371d81082f6 Mon Sep 17 00:00:00 2001 From: Yair Siman Tov <63305203+yairsimantov20@users.noreply.github.com> Date: Tue, 17 Oct 2023 19:04:31 +0300 Subject: [PATCH] Port 4964 fix pagerduty default mapping (#165) --- .../pagerduty/.port/resources/port-app-config.yaml | 2 +- integrations/pagerduty/CHANGELOG.md | 7 +++++++ integrations/pagerduty/pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/integrations/pagerduty/.port/resources/port-app-config.yaml b/integrations/pagerduty/.port/resources/port-app-config.yaml index 2eb17d334a..f7966d4941 100644 --- a/integrations/pagerduty/.port/resources/port-app-config.yaml +++ b/integrations/pagerduty/.port/resources/port-app-config.yaml @@ -11,7 +11,7 @@ resources: properties: status: .status url: .html_url - oncall: .oncall_user[0].user.email + oncall: .__oncall_user[0].user.email - kind: incidents selector: query: 'true' diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index 9ed01f60ab..f3cf8c1d82 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +# Port_Ocean 0.1.8 (2023-10-17) + +### Bug Fixes + +- Fixed default mapping for the oncall user (PORT-4964) + + # Port_Ocean 0.1.7 (2023-09-27) ### Improvements diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index aa4e0a4136..8d6233c325 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pagerduty" -version = "0.1.7" +version = "0.1.8" description = "Pagerduty Integration" authors = ["Port Team "]