From b83ec4cd4bb0211642863fd6408f7c8dbb4fb044 Mon Sep 17 00:00:00 2001 From: Kaitlyn Alphonse Date: Wed, 7 Jan 2026 08:14:42 -0400 Subject: [PATCH 1/2] feat: add CLA workflow caller --- .github/workflows/cla.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..2737e836 --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,20 @@ +--- +name: CLA Workflow + +permissions: + contents: write + checks: write + actions: write + pull-requests: write + +on: + pull_request: + types: [opened, reopened, synchronize] + branches: + - staging + - main + +jobs: + cla: + uses: ec-intl/workflow-templates/.github/workflows/cla_template.yml@main + secrets: inherit From dc01ac41df10d6afc67466ee43f2fd105955a793 Mon Sep 17 00:00:00 2001 From: Kaitlyn Alphonse Date: Mon, 12 Jan 2026 13:34:54 -0400 Subject: [PATCH 2/2] Add merge_group --- .github/workflows/cla.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 2737e836..b622a93c 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -8,13 +8,14 @@ permissions: pull-requests: write on: + merge_group: pull_request: types: [opened, reopened, synchronize] branches: - - staging - main + - master jobs: cla: - uses: ec-intl/workflow-templates/.github/workflows/cla_template.yml@main + uses: clima/.github/.github/workflows/cla_template.yml@main secrets: inherit