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
gh api --method POST "repos/${{ github.repository }}/statuses/${{ github.event.pull_request.head.sha }}" \
49
78
-f state=success \
50
79
-f context="CLAAssistant" \
51
-
-f description="CLA check skipped — author is an org member"
80
+
-f description="CLA check skipped — all committers are org members or bots"
52
81
53
82
- name: "CLA Assistant"
54
83
if: |
55
-
(steps.membership.outputs.is_member != 'true') &&
84
+
(steps.cla-check.outputs.all_exempt != 'true') &&
56
85
((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')
Copy file name to clipboardExpand all lines: docs/modules/nuclei.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ The Nuclei module has many configuration options:
52
52
| modules.nuclei.silent | bool | Don't display nuclei's banner or status messages | False |
53
53
| modules.nuclei.tags | str | execute a subset of templates that contain the provided tags | |
54
54
| modules.nuclei.templates | str | template or template directory paths to include in the scan | |
55
-
| modules.nuclei.version | str | nuclei version | 3.7.0 |
55
+
| modules.nuclei.version | str | nuclei version | 3.7.1 |
56
56
<!-- END BBOT MODULE OPTIONS NUCLEI -->
57
57
58
58
Most of these you probably will **NOT** want to change. In particular, we advise against changing the version of Nuclei, as it's possible the latest version won't work right with BBOT.
0 commit comments