Skip to content

Commit c02b99f

Browse files
committed
fix: were ran typo
1 parent 5274d40 commit c02b99f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

__tests__/e2e/smoke.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ mergeable:
7272
{
7373
title: '1/1 Fail(s): TITLE',
7474
summary:
75-
'### Status: FAIL\n\n Here are some stats of the run:\n 1 validations were ran.\n 0 PASSED\n 1 FAILED\n ',
75+
'### Status: FAIL\n\n Here are some stats of the run:\n 1 validations were run.\n 0 PASSED\n 1 FAILED\n ',
7676
text:
7777
'#### :x: Validator: TITLE\n * :heavy_check_mark: ***title must exclude \'must_be_excluded_text\'***\n Input : [WIP] Test3\n Settings : ```{"must_exclude":{"regex":"must_be_excluded_text"}}```\n * :x: ***title does not include "must_be_included_text"***\n Input : [WIP] Test3\n Settings : ```{"must_include":{"regex":"must_be_included_text"}}```\n * :x: ***title must begins with "begins_with_text"***\n Input : [WIP] Test3\n Settings : ```{"begins_with":{"match":"begins_with_text"}}```\n * :x: ***title must end with "ends_with_text"***\n Input : [WIP] Test3\n Settings : ```{"ends_with":{"match":"ends_with_text"}}```\n * :x: ***(title must begins with "begins_with_text" ***AND*** title must end with "ends_with_text")***\n Input : [WIP] Test3\n Settings : ```{"and":[{"begins_with":{"match":"begins_with_text"}},{"ends_with":{"match":"ends_with_text"}}]}```\n * :x: ***(title does not include "must_be_included_text" ***OR*** title must begins with "begins_with_text")***\n Input : [WIP] Test3\n Settings : ```{"or":[{"must_include":{"regex":"must_be_included_text"}},{"begins_with":{"match":"begins_with_text"}}]}```\n<!-- #mergeable-data {"id":4,"eventName":"pull_request","action":"edited"} #mergeable-data -->'
7878
},

docs/actions/check.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Check
1313
status: 'success' # Can be: success, failure, neutral, cancelled, timed_out, or action_required
1414
payload:
1515
title: 'Mergeable Run have been Completed!'
16-
summary: "All the validators have returned 'pass'! \n Here are some stats of the run: \n {{validationCount}} validations were ran"
16+
summary: "All the validators have returned 'pass'! \n Here are some stats of the run: \n {{validationCount}} validations were run"
1717

1818
You can pass in Handlebars template to show the details result of the run.
1919

@@ -26,7 +26,7 @@ You can pass in Handlebars template to show the details result of the run.
2626
summary: |
2727
### Status: {{toUpperCase validationStatus}}
2828
Here are some stats of the run:
29-
{{validationCount}} validations were ran.
29+
{{validationCount}} validations were run.
3030
{{passCount}} PASSED
3131
{{failCount}} FAILED
3232
text: "{{#each validationSuites}}\n
@@ -46,7 +46,7 @@ You can pass in Handlebars template to show the details result of the run.
4646
summary: |
4747
### Status: {{toUpperCase validationStatus}}
4848
Some or All of the validators have returned 'error' status, please check below for details
49-
Here are some stats of the run: \n {{validationCount}} validations were ran.
49+
Here are some stats of the run: \n {{validationCount}} validations were run.
5050
{{passCount}} ***PASSED***
5151
{{failCount}} ***FAILED***
5252
{{errorCount}} ***ERRORED***

lib/configuration/lib/consts.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
status: 'success',
88
payload: {
99
title: 'Mergeable Run has been Completed!',
10-
summary: 'All the validators have returned \'pass\'! \n Here are some stats of the run: \n {{validationCount}} validations were ran'
10+
summary: 'All the validators have returned \'pass\'! \n Here are some stats of the run: \n {{validationCount}} validations were run'
1111
}
1212
}],
1313
DEFAULT_PR_FAIL: [{
@@ -19,7 +19,7 @@ module.exports = {
1919
summary: `### Status: {{toUpperCase validationStatus}}
2020
2121
Here are some stats of the run:
22-
{{validationCount}} validations were ran.
22+
{{validationCount}} validations were run.
2323
{{passCount}} PASSED
2424
{{failCount}} FAILED
2525
`,
@@ -42,7 +42,7 @@ module.exports = {
4242
Some or All of the validators have returned 'error' status, please check below for details
4343
4444
Here are some stats of the run:
45-
{{validationCount}} validations were ran.
45+
{{validationCount}} validations were run.
4646
{{passCount}} ***PASSED***
4747
{{failCount}} ***FAILED***
4848
{{errorCount}} ***ERRORED***`,
@@ -62,7 +62,7 @@ Status {{toUpperCase status}}
6262
DEFAULT_ISSUES_PASS: [{
6363
do: 'comment',
6464
payload: {
65-
body: 'All the validators have returned \'pass\'! \n Here are some stats of the run: \n {{validationCount}} validations were ran'
65+
body: 'All the validators have returned \'pass\'! \n Here are some stats of the run: \n {{validationCount}} validations were run'
6666
}
6767
}],
6868
DEFAULT_ISSUES_FAIL: [{

0 commit comments

Comments
 (0)