summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlemeshovich <17667824+lemeshovich@users.noreply.github.com>2025-07-22 21:54:12 +0300
committerGitHub <noreply@github.com>2025-07-23 00:24:12 +0530
commitd680b7a43e7e88c3ff944a0684d9d92cc9ae7330 (patch)
tree7e7dcb99200bd7bb3f2743966dd18e94a8aff9fd
parent9a378a18fda789bbe58ea9b20d1a7f7f5d09de6f (diff)
downloadvyos.vyos-d680b7a43e7e88c3ff944a0684d9d92cc9ae7330.tar.gz
vyos.vyos-d680b7a43e7e88c3ff944a0684d9d92cc9ae7330.zip
T7579: added workflow for CLA (#427)
* T7579: added workflow for CLA * T7579: fix of the run trigger for CLA * added a new line * added the changelog fragment * fix a new line character at the end of file * fixed new line issues (#427) - https://github.com/vyos/vyos.vyos/pull/427 * removed blank lines (#427) --------- Co-authored-by: Yevhen Bondarenko <evgeniy.bondarenko@sentrium.io>
-rw-r--r--.github/workflows/cla-check.yml15
-rw-r--r--changelogs/fragments/add_cla_workflow.yml3
2 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/cla-check.yml b/.github/workflows/cla-check.yml
new file mode 100644
index 00000000..da3e6efd
--- /dev/null
+++ b/.github/workflows/cla-check.yml
@@ -0,0 +1,15 @@
+name: "CLA Check"
+permissions:
+ actions: write
+ contents: read
+ pull-requests: write
+ statuses: write
+on:
+ pull_request_target:
+ types: [opened, synchronize, closed]
+ issue_comment:
+ types: [created]
+jobs:
+ call-cla-assistant:
+ uses: vyos/vyos-cla-signatures/.github/workflows/cla-reusable.yml@current
+ secrets: inherit
diff --git a/changelogs/fragments/add_cla_workflow.yml b/changelogs/fragments/add_cla_workflow.yml
new file mode 100644
index 00000000..6e952c02
--- /dev/null
+++ b/changelogs/fragments/add_cla_workflow.yml
@@ -0,0 +1,3 @@
+---
+trivial:
+ - cla-check.yml - Add a workflow for the checking and signing of Contributor License Agreement (CLA)