openai/codex-action

Public

mirrored from https://github.com/openai/codex-actionAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
pr17

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/cla.yml

29lines · modeblame

e9d0a695Michael Bolin9 months ago1name: CLA Assistant
2on:
3issue_comment:
4types: [created]
5pull_request_target:
6types: [opened, closed, synchronize]
7
8permissions:
9actions: write
10contents: write
11pull-requests: write
12statuses: write
13
14jobs:
15cla:
16runs-on: ubuntu-latest
17steps:
18- uses: contributor-assistant/github-action@v2.6.1
19if: |
20github.event_name == 'pull_request_target' ||
21github.event.comment.body == 'recheck' ||
22github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA'
23env:
24GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25with:
151b4352Michael Bolin9 months ago26path-to-document: https://github.com/openai/codex-action/blob/main/CLA.md
e9d0a695Michael Bolin9 months ago27path-to-signatures: signatures/cla.json
28branch: cla-signatures
29allowlist: dependabot[bot]