diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-07-03 14:04:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-03 14:04:50 +0100 |
commit | 12622098d406b5fbb66f79c17d70f7c47528f12f (patch) | |
tree | 575f9b7c9115953762eb8b8c03a3a78420aade46 | |
parent | 4b0344dfafa018e50a12c47626074751d38fe432 (diff) | |
parent | 09c901fa3b0467c0d08bdbe08d42f1bdbf1be1e8 (diff) | |
download | vyos-1x-12622098d406b5fbb66f79c17d70f7c47528f12f.tar.gz vyos-1x-12622098d406b5fbb66f79c17d70f7c47528f12f.zip |
Merge pull request #4579 from vyos/cla
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 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 }} |