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
Copy file name to clipboardexpand all lines: .github/workflows/01-CLA-Assistant.yml
+4-11
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,7 @@ on:
3
3
issue_comment:
4
4
types: [created]
5
5
pull_request_target:
6
-
types: [opened,closed,synchronize]
7
-
workflow_dispatch:
8
-
6
+
types: [opened,closed,synchronize,reopened]
9
7
10
8
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings
11
9
permissions:
@@ -19,8 +17,8 @@ jobs:
19
17
runs-on: ubuntu-latest
20
18
steps:
21
19
- name: "CLA Assistant"
22
-
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
23
-
uses: SiliconLabsWorkflows/cla-assistant@master
20
+
if: ${{ contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA') }} || github.event_name == 'pull_request_target'
create-file-commit-message: "Created the CLA database file. CLA Assistant Lite bot created this file."
39
37
signed-commit-message: "$contributorName has signed the CLA in $owner/$repo#$pullRequestNo"
40
-
#custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'
41
-
#custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA'
42
-
#custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.'
43
-
#lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true)
44
-
#use-dco-flag: true - If you are using DCO instead of CLA
0 commit comments