forked from danielweller-swp/workflow-run-diff-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
130 lines (105 loc) · 3.8 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const github = require('@actions/github');
const core = require('@actions/core');
const OWNER = github.context.repo.owner
const REPO = github.context.repo.repo
const WORKFLOW_NAME = process.env.WORKFLOW_NAME || github.context.workflow
const RUN_ID = process.env.RUN_ID || github.context.runId
const TOKEN = process.env.TOKEN || core.getInput('GITHUB_TOKEN')
const octo = github.getOctokit(TOKEN)
const getWorkflowByName = async (workflowName) => {
const response = await
octo.rest.actions.listRepoWorkflows({
owner: OWNER,
repo: REPO
})
const workflow =
response.data.workflows.find( w => w.name === workflowName)
if (!workflow) {
throw Error(`No workflow with name '${workflowName}' found.`)
}
return workflow
}
const getPreviousRun = async (currentRun) => {
const workflow = await getWorkflowByName(WORKFLOW_NAME)
const response = await
octo.rest.actions.listWorkflowRuns({
owner: OWNER,
repo: REPO,
workflow_id: workflow.id
})
const relevantRunsByDate =
response.data.workflow_runs
.filter( r => r.head_branch === currentRun.head_branch )
.sort( (r1, r2) => r1.run_number - r2.run_number )
const currentRunIndex = relevantRunsByDate.findIndex( r => r.id === currentRun.id )
if (currentRunIndex === -1)
throw Error('Could not find current run.')
if (currentRunIndex === 0)
return {}
else {
const previousRun = relevantRunsByDate[currentRunIndex - 1]
if (previousRun.conclusion === 'success') {
return {
previousRun
}
} else {
const allPreviousRuns = relevantRunsByDate.slice(0, previousRun)
const lastSuccesfulRun =
allPreviousRuns
.reverse()
.find(r => r.conclusion === 'success')
return {
previousRun,
lastSuccesfulRun
}
}
}
}
const getDiffLink = (commit1, commit2) =>
`https://github.com/${OWNER}/${REPO}/compare/${commit2.substring(0, 7)}...${commit1.substring(0, 7)}`
const runUrlMessage = (runText, run) => `${runText}: ${run.html_url}`
const diffMessage = (runText, run1, run2) =>
`Diff between ${runText} and this run: ${getDiffLink(run1.head_sha, run2.head_sha)}`
const getOutput = async () => {
const response = await
octo.rest.actions.getWorkflowRun({
owner: OWNER,
repo: REPO,
run_id: RUN_ID
})
const currentRun = response.data
const { previousRun, lastSuccesfulRun: lastSuccesfullRun } = await getPreviousRun(currentRun)
if (!previousRun) {
return "No information on previous runs: this is the first workflow run on this branch."
} else {
const outputMessage = []
if (previousRun.conclusion === 'success') {
outputMessage.push(`The previous run (${previousRun.created_at}) was successful.`)
outputMessage.push(runUrlMessage("Previous run", previousRun))
outputMessage.push(diffMessage("previous run", currentRun, previousRun))
} else {
if (!previousRun.conclusion) {
outputMessage.push(`The previous run (${previousRun.created_at}) is still in progress.`)
} else {
outputMessage.push(`The previous run (${previousRun.created_at}) concluded with '${previousRun.conclusion}'.`)
}
outputMessage.push(runUrlMessage("Previous run", previousRun))
if (!lastSuccesfullRun) {
outputMessage.push("There was no succesful run.")
} else {
outputMessage.push(`The last succesful run was at ${lastSuccesfullRun.created_at}.`)
outputMessage.push(runUrlMessage("Last succesfull run", lastSuccesfullRun))
outputMessage.push(diffMessage("last succesfull run", currentRun, lastSuccesfullRun))
}
}
return outputMessage.join("\n")
}
}
const main = async () => {
const output = await getOutput()
console.log(output)
}
main().then().catch(e => {
console.error(e)
process.exit(1)
})