This repository was archived by the owner on Feb 10, 2025. It is now read-only.
forked from mikepenz/action-junit-report-legacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.js
94 lines (85 loc) · 3.57 KB
/
action.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const core = require('@actions/core');
const github = require('@actions/github');
const { Octokit } = require("@octokit/rest");
const { parseTestReports } = require('./utils.js');
const IDENTIFIER = "23edae2f-afea-4264-b56f-bc94eb0d4ea1"
const action = async () => {
const reportPaths = core.getInput('report_paths');
const failsIfNoTestResults = core.getInput('fails_if_no_test_results') == 'true';
core.info(`Going to parse results form ${reportPaths}`);
const githubToken = core.getInput('github_token');
const name = core.getInput('check_name');
const commit = core.getInput('commit');
let { count, skipped, annotations } = await parseTestReports(reportPaths);
const foundResults = count > 0 || skipped > 0;
const title = foundResults
? `${count} tests run, ${skipped} skipped, ${annotations.length} failed.`
: 'No test results found!';
core.info(`Result: ${title}`);
const pullRequest = github.context.payload.pull_request;
const link = pullRequest && pullRequest.html_url || github.context.ref;
const conclusion = (foundResults || !failsIfNoTestResults) && annotations.length === 0 ? 'success' : 'failure';
const status = 'completed';
const head_sha = commit || pullRequest && pullRequest.head.sha || github.context.sha;
core.info(
`Posting status '${status}' with conclusion '${conclusion}' to ${link} (sha: ${head_sha})`
);
const createCheckRequest = {
...github.context.repo,
name,
head_sha,
status,
conclusion,
output: {
title,
summary: '',
annotations: annotations.slice(0, 50)
}
};
core.debug(JSON.stringify(createCheckRequest, null, 2));
try {
const octokit = new Octokit({
auth: githubToken,
});
const checkRequest = await octokit.checks.create(createCheckRequest);
if (pullRequest) {
const {
repo: {repo: repoName, owner: repoOwner},
runId: runId
} = github.context
const defaultParameter = {
repo: repoName,
owner: repoOwner
}
// Find unique comments
const {data: comments} = await octokit.issues.listComments({
...defaultParameter,
issue_number: pullRequest.number
})
const targetComment = comments.find(c => {
return c.body.includes(IDENTIFIER)
})
// Delete previous comment if exist
if (targetComment) {
await octokit.issues.deleteComment({
...defaultParameter,
comment_id: targetComment.id
})
core.info("Comment successfully delete for id: " + targetComment.id)
}
if (conclusion === "failure") {
const checkId = checkRequest.data.id
// Create comment
await octokit.issues.createComment({
...defaultParameter,
issue_number: pullRequest.number,
body: "Uh-oh! Some of the tests failed: https://github.com/" + repoOwner + "/" + repoName + "/runs/" + checkId + " <!-- " + IDENTIFIER + " -->"
})
}
}
} catch (error) {
core.error(`Failed to create checks using the provided token. (${error})`);
core.warning(`This usually indicates insufficient permissions. More details: https://github.com/mikepenz/action-junit-report/issues/32`);
}
};
module.exports = action;