We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64c750c commit 31e1fd9Copy full SHA for 31e1fd9
.github/scripts/label_missing_acknowledgement_section.js
@@ -17,7 +17,7 @@ module.exports = async ({github, context, core}) => {
17
return core.notice("Only newly open PRs are labelled to avoid spam; skipping")
18
}
19
20
- const RELATED_ACK_SECTION_REGEX = /By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.\n\n\*\*Disclaimer\*\*: We value your time and bandwidth\. As such, any pull requests created on non-triaged issues might not be successful\./;
+ const RELATED_ACK_SECTION_REGEX = /By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice./;
21
22
const isMatch = RELATED_ACK_SECTION_REGEX.exec(PR_BODY);
23
if (isMatch == null) {
0 commit comments