summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2025-07-06 08:37:08 +0200
committerGitHub <noreply@github.com>2025-07-06 08:37:08 +0200
commit50f8d4bd4ad6e69aa57797f5875e708850b45ef7 (patch)
tree02f5b2b3bcf209c83cc8edd11363a3a6e31d33d5
parent1dde94e167bc547176cc5bddcbdfba30beffed00 (diff)
parentca8ca29c0b8d6255f4ed353bd5934316e8f565cc (diff)
downloadvyos-1x-50f8d4bd4ad6e69aa57797f5875e708850b45ef7.tar.gz
vyos-1x-50f8d4bd4ad6e69aa57797f5875e708850b45ef7.zip
Merge pull request #45 from vyos/cla
T7579: added workflow for CLA
-rw-r--r--.github/workflows/cla-check.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/cla-check.yml b/.github/workflows/cla-check.yml
new file mode 100644
index 000000000..3c1aeee67
--- /dev/null
+++ b/.github/workflows/cla-check.yml
@@ -0,0 +1,19 @@
+name: "CLA Check"
+
+permissions:
+ actions: write
+ contents: read
+ pull-requests: write
+ statuses: write
+
+on:
+ pull_request:
+ types: [opened, synchronize, closed]
+ issue_comment:
+ types: [created]
+
+jobs:
+ call-cla-assistant:
+ uses: vyos/vyos-cla-signatures/.github/workflows/cla-reusable.yml@current
+ secrets:
+ CLA_PAT: ${{ secrets.CLA_PAT }}