Skip to content

Commit 26221d7

Browse files
authored
Merge pull request #638 from mikepenz/feature/disable_job_summary_publishing
Offer configuration to disable the publishing of the `job_summary`
2 parents 4a63872 + f71f775 commit 26221d7

File tree

6 files changed

+26
-677
lines changed

6 files changed

+26
-677
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ jobs:
8888
| `update_check` | Optional. Uses an alternative API to update checks, use for cases with more than 50 annotations. |
8989
| `annotate_only` | Optional. Will only annotate the results on the files, won't create a check run. |
9090
| `transformers` | Optional. Array of `Transformer`s offering the ability to adjust the fileName. Defaults to: `[{"searchValue":"::","replaceValue":"/"}]` |
91+
| `job_summary` | Optional. Enables the publishing of the job summary for the results. Defaults to `true`. May be required to disable [Enterprise Server](https://github.com/mikepenz/action-junit-report/issues/637) |
9192
| `detailed_summary` | Optional. Include table with all test results in the summary. Defaults to `false`. |
9293
| `annotate_notice` | Optional. Annotate passed test results along with warning/failed ones. Defaults to `true`. |
9394

action.yml

+4
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ inputs:
7070
description: 'Provide a regex pattern and target pattern'
7171
required: false
7272
default: '[]'
73+
job_summary:
74+
description: 'Enables the publishing of a JOB_SUMMARY with the report.'
75+
required: false
76+
default: false
7377
detailed_summary:
7478
description: 'Include table with all test results in summary'
7579
required: false

0 commit comments

Comments
 (0)