diff options
author | lemeshovich <17667824+lemeshovich@users.noreply.github.com> | 2025-06-26 12:37:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-26 12:37:04 +0300 |
commit | 09c901fa3b0467c0d08bdbe08d42f1bdbf1be1e8 (patch) | |
tree | aa0a4bd110f81e897336fee936c8ad3e0f4df10c | |
parent | 195651aababa371d67c6e1608094891227a5bd18 (diff) | |
download | vyos-1x-09c901fa3b0467c0d08bdbe08d42f1bdbf1be1e8.tar.gz vyos-1x-09c901fa3b0467c0d08bdbe08d42f1bdbf1be1e8.zip |
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 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 }} |