@@ -111,13 +111,59 @@ inputs:
111111 Deprecated, see https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging
112112 default : false
113113outputs :
114- COMMENT_FILE_WRITTEN :
115- description : >
116- This output is only set when running in PR mode. It's a boolean indicating
117- whether a comment file was written to COMMENT_FILENAME or not. If so,
118- you'll need to run the action in workflow_run mode to post it. If
119- "false", no comment file was written (likely because the comment was
120- already posted to the PR).
114+ activity_run :
115+ description : >
116+ The type of activity that was run. One of `process_pr`, `post_comment`, `save_coverage_data_files`.
117+ comment_file_written :
118+ description : >
119+ A boolean indicating whether a comment file was written to COMMENT_FILENAME or not.
120+ If so, you'll need to run the action in workflow_run mode to post it. If "false",
121+ no comment file was written (likely because the comment was already posted to the PR).
122+ Only available when running in PR mode.
123+ new_covered_lines :
124+ description : The number of covered lines in the pull request. (Only available in PR mode)
125+ new_num_statements :
126+ description : The number of statements in the pull request. (Only available in PR mode)
127+ new_percent_covered :
128+ description : The coverage percentage of the pull request. (Only available in PR mode)
129+ new_missing_lines :
130+ description : The number of lines with missing coverage in the pull request. (Only available in PR mode)
131+ new_excluded_lines :
132+ description : The number of excluded lines in the pull request. (Only available in PR mode)
133+ new_num_branches :
134+ description : The number of branches in the pull request. (Only available in PR mode)
135+ new_num_partial_branches :
136+ description : The number of partial branches in the pull request. (Only available in PR mode)
137+ new_covered_branches :
138+ description : The number of covered branches in the pull request. (Only available in PR mode)
139+ new_missing_branches :
140+ description : The number of branches with missing coverage in the pull request. (Only available in PR mode)
141+ reference_covered_lines :
142+ description : The number of covered lines in the base branch. (Only available in PR mode)
143+ reference_num_statements :
144+ description : The number of statements in the base branch. (Only available in PR mode)
145+ reference_percent_covered :
146+ description : The coverage percentage of the base branch. (Only available in PR mode)
147+ reference_missing_lines :
148+ description : The number of lines with missing coverage in the base branch. (Only available in PR mode)
149+ reference_excluded_lines :
150+ description : The number of excluded lines in the base branch. (Only available in PR mode)
151+ reference_num_branches :
152+ description : The number of branches in the base branch. (Only available in PR mode)
153+ reference_num_partial_branches :
154+ description : The number of partial branches in the base branch. (Only available in PR mode)
155+ reference_covered_branches :
156+ description : The number of covered branches in the base branch. (Only available in PR mode)
157+ reference_missing_branches :
158+ description : The number of branches with missing coverage in the base branch. (Only available in PR mode)
159+ diff_total_num_lines :
160+ description : The total number of lines in the diff. (Only available in PR mode)
161+ diff_total_num_violations :
162+ description : The total number of lines with missing coverage in the diff. (Only available in PR mode)
163+ diff_total_percent_covered :
164+ description : The coverage percentage of the diff. (Only available in PR mode)
165+ diff_num_changed_lines :
166+ description : The number of changed lines in the diff. (Only available in PR mode)
121167runs :
122168 using : docker
123169 image : Dockerfile
0 commit comments