From cb7734b521318909df70c81397c7f274e5f715c6 Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Tue, 19 Nov 2024 09:24:18 +0000 Subject: [PATCH] [Integration][PagerDuty] - Update incident url (#1149) --- .../pagerduty/.port/resources/port-app-config.yaml | 2 +- integrations/pagerduty/CHANGELOG.md | 8 ++++++++ integrations/pagerduty/pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/integrations/pagerduty/.port/resources/port-app-config.yaml b/integrations/pagerduty/.port/resources/port-app-config.yaml index 843b87718a..1493a1690b 100644 --- a/integrations/pagerduty/.port/resources/port-app-config.yaml +++ b/integrations/pagerduty/.port/resources/port-app-config.yaml @@ -33,7 +33,7 @@ resources: blueprint: '"pagerdutyIncident"' properties: status: .status - url: .self + url: .html_url urgency: .urgency assignees: .assignments | map(.assignee.email) escalation_policy: .escalation_policy.summary diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index 914be116c3..2939ad8d16 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.116 (2024-11-18) + + +### Improvements + +- Updated the incident url mapping to use html_url instead of the api url. (0.1.116) + + ## 0.1.115 (2024-11-12) diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index 4c9db74f53..51a0d8929d 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pagerduty" -version = "0.1.115" +version = "0.1.116" description = "Pagerduty Integration" authors = ["Port Team "]