Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 6 additions & 18 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# This workflow automatically requests Pull Requests (PR) authors to sign the Ultralytics CLA before PRs can be merged

name: CLA Assistant
concurrency:
group: cla-${{ github.event.pull_request.number || github.event.issue.number }}
on:
issue_comment:
types:
Expand All @@ -16,30 +18,16 @@ on:

permissions:
actions: write
contents: write
pull-requests: write
statuses: write

jobs:
CLA:
if: github.repository == 'ultralytics/yolov3'
if: github.repository == 'ultralytics/yolov3' && (github.event_name != 'issue_comment' || github.event.issue.pull_request)
runs-on: ubuntu-latest
steps:
- name: CLA Assistant
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I sign the CLA') || github.event_name == 'pull_request_target'
uses: contributor-assistant/github-action@v2.6.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Must be repository secret PAT
PERSONAL_ACCESS_TOKEN: ${{ secrets._GITHUB_TOKEN }}
uses: ultralytics/actions/cla@43945a7d2364fc943becb0245a4edcb05e49427f
Comment thread
glenn-jocher marked this conversation as resolved.
Outdated
with:
path-to-signatures: "signatures/version1/cla.json"
path-to-document: "https://docs.ultralytics.com/help/CLA" # CLA document
# Branch must not be protected
branch: cla-signatures
allowlist: dependabot[bot],github-actions,pre-commit*,bot*

remote-organization-name: ultralytics
remote-repository-name: cla
custom-pr-sign-comment: "I have read the CLA Document and I sign the CLA"
custom-allsigned-prcomment: All Contributors have signed the CLA. ✅
github-token: ${{ secrets.GITHUB_TOKEN }}
cla-token: ${{ secrets._GITHUB_TOKEN }}
Loading