From 6cf0cbfc5881f327c2b1a5aba1171b4dc09a4184 Mon Sep 17 00:00:00 2001 From: rdkcmf Date: Thu, 10 Jul 2025 13:57:12 +0100 Subject: [PATCH 1/2] Deploy cla action --- .github/workflows/cla.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/cla.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 0000000..0550479 --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,13 @@ +name: "CLA" +on: + issue_comment: + types: [created] + pull_request_target: + types: [opened,closed,synchronize] + +jobs: + CLA-Lite: + name: "Signature" + uses: rdkcentral/cmf-actions/.github/workflows/cla.yml@main + secrets: + PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT }} \ No newline at end of file From a55dd0f8c7ea00a6c357c8334b8ef13bde1ac312 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Tue, 19 Aug 2025 09:42:48 +0200 Subject: [PATCH 2/2] Add premissions --- .github/workflows/cla.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 0550479..7e3d9d6 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -5,9 +5,13 @@ on: pull_request_target: types: [opened,closed,synchronize] +permissions: + contents: read + pull-requests: write + jobs: CLA-Lite: name: "Signature" uses: rdkcentral/cmf-actions/.github/workflows/cla.yml@main secrets: - PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT }} \ No newline at end of file + PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT }}