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
+
6
+
name: CLA
7
+
on:
8
+
issue_comment:
9
+
types:
10
+
- created
11
+
pull_request_target:
12
+
types:
13
+
- reopened
14
+
- opened
15
+
- synchronize
16
+
17
+
permissions:
18
+
actions: write
19
+
pull-requests: write
20
+
21
+
jobs:
22
+
CLA:
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'))
0 commit comments