diff options
author | Christian Breunig <christian@breunig.cc> | 2025-07-06 08:25:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-06 08:25:51 +0200 |
commit | dbcd596f5f2ba524632fd278deecf6bc62d523cc (patch) | |
tree | b14c18aa20acb73d25e0a40b46943e625a4f4938 | |
parent | 08200e5f64a17225fca73b9f52b0bc2c27aa938f (diff) | |
parent | 7547000fcf89156a3a887f8725ff1177af2b09b6 (diff) | |
download | vyos-cloud-init-dbcd596f5f2ba524632fd278deecf6bc62d523cc.tar.gz vyos-cloud-init-dbcd596f5f2ba524632fd278deecf6bc62d523cc.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 00000000..3c1aeee6 --- /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 }} |