You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow automatically requests Pull Requests (PR) authors to sign the Ultralytics CLA before PRs can be merged
5
5
6
-
name: CLA Assistant
6
+
name: CLA
7
7
on:
8
8
issue_comment:
9
9
types:
@@ -16,30 +16,17 @@ on:
16
16
17
17
permissions:
18
18
actions: write
19
-
contents: write
20
19
pull-requests: write
21
-
statuses: write
22
20
23
21
jobs:
24
22
CLA:
25
-
if: github.repository == 'ultralytics/yolov3'
23
+
if: github.event_name == 'pull_request_target' || (github.event.issue.pull_request && (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I sign the CLA'))
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'
0 commit comments