# clasee **Repository Path**: mirrors_influxdata/clasee ## Basic Information - **Project Name**: clasee - **Description**: InfluxData CLA checking github action - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # THIS REPO IS ARCHIVED See https://github.com/influxdata/k8s-idpe/issues/17843#issuecomment-1633120657 for details CLAsee - InfluxData CLA Checker ------------------------------- A github action which checks the influxdata CLA for presence of the PR Author ``` GITHUB_ACTOR=pauldix CLASEE_SECRET="$(cat secrets.json | base64)" clasee ``` Demonstration of a github workflow yaml: ```yaml on: pull_request: types: [opened] jobs: test_action: runs-on: ubuntu-latest name: "Test Action Job" steps: - uses: actions/checkout@v1 - name: "Test Action" uses: influxdata/clasee@v1 with: spreadsheet: "1jnRZYSw83oa6hcEBb1lxK6nNvXrWnOzPT8Bz9iR4Q8s" range: "Form Responses!E:E" env: CLASEE_SECRET: ${{ secrets.CLASEE_SECRET }} ```