diff options
author | Christian Breunig <christian@breunig.cc> | 2025-07-06 08:21:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-06 08:21:36 +0200 |
commit | b8c16b49a73641dcf8e98d799713938150d1c3ac (patch) | |
tree | 92ad7e043ba5ddcdba0ff28b722056440fde16a4 | |
parent | aab7a7122a70f7fe7cafcabdc7ca5a8125f84939 (diff) | |
parent | 61c8920202f6b5a8f6b5eb26c128ab5ef8e1763d (diff) | |
download | vyos-github-actions-current.tar.gz vyos-github-actions-current.zip |
T7579: added workflow for CLA
-rw-r--r-- | .github/workflows/cla-check.yml | 19 |
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 0000000..3c1aeee --- /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 }} |