From 18b4c3718255bf7a0a473f7bbf5614d61ad92077 Mon Sep 17 00:00:00 2001 From: gitbot <gitbot.north@seco.com> Date: Mon, 11 Nov 2024 16:12:46 +0000 Subject: [PATCH] Integrate gitlab-ci/yt-260-restrict-edit-rights-on-confluence-release-page -- Commit: https://git.seco.com/seco-ne/yocto/infrastructure/gitlab-ci/-/commit/081272c177992b2d5e1789e22f6add03b804123d YT-260: Inherit restrictions from the parent Confluence page In each release, a Confluence page is created with expected restrictions specifying who can edit or update the page. Confluence automatically inherits "read" restrictions from the parent page, but "edit/update" restrictions are not inherited by design in Confluence. This ensures that restrictions are manually inherited from the parent page. Since the Confluence Python API module lacks functionality for setting restrictions, direct HTTP requests are used with the `requests` library instead of the Confluence module. --- .gitlab-ci | 2 +- .gitlab-ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci b/.gitlab-ci index 1740c4a8..081272c1 160000 --- a/.gitlab-ci +++ b/.gitlab-ci @@ -1 +1 @@ -Subproject commit 1740c4a8f7f295f7dfcccb4f5979b5a7633c0821 +Subproject commit 081272c177992b2d5e1789e22f6add03b804123d diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 727b2d83..c2bc7bb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,8 +4,8 @@ # --------------------------------------------------------------------------------------- include: - project: '${CI_PROJECT_ROOT_NAMESPACE}/yocto/infrastructure/gitlab-ci' - ref: 1740c4a8f7f295f7dfcccb4f5979b5a7633c0821 + ref: 081272c177992b2d5e1789e22f6add03b804123d file: 'manifest-integration.yml' variables: - GITLAB_CI_REVISION: 1740c4a8f7f295f7dfcccb4f5979b5a7633c0821 + GITLAB_CI_REVISION: 081272c177992b2d5e1789e22f6add03b804123d -- GitLab