[codex] Harden auth crypto dependency hygiene #7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CLA | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, closed] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| contributor-license-agreement: | |
| if: | | |
| github.event_name == 'pull_request_target' || | |
| (github.event_name == 'issue_comment' && github.event.issue.pull_request && contains(github.event.comment.body, 'recheck')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check CLA | |
| uses: contributor-assistant/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| path-to-signatures: .github/cla-signatures/version1/cla.json | |
| path-to-document: docs/legal/ICLA.md | |
| branch: main | |
| allowlist: dependabot[bot],renovate[bot] | |
| custom-pr-sign-comment: I have read the CLA Document and I hereby sign the CLA | |
| custom-notsigned-prcomment: > | |
| Thanks for your contribution. Before we can review or merge this pull request, | |
| please sign the Individual CLA by adding this exact comment: | |
| `I have read the CLA Document and I hereby sign the CLA` |