mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39:03 +00:00
ci: Debug
Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
parent
6566c4047c
commit
d576bb458b
@ -86,7 +86,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
github-token: ${{ steps.get-app-token.outputs.token }}
|
github-token: ${{ steps.get-app-token.outputs.token }}
|
||||||
script: |
|
script: |
|
||||||
let result = new Map()
|
let result: {[key: string]: string} = {}
|
||||||
|
|
||||||
const wfJobs = await github.actions.listJobsForWorkflowRun({
|
const wfJobs = await github.actions.listJobsForWorkflowRun({
|
||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
@ -94,21 +94,21 @@ jobs:
|
|||||||
run_id: context.payload.workflow_run.id,
|
run_id: context.payload.workflow_run.id,
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log(wfJobs.data.jobs)
|
|
||||||
|
|
||||||
for (const job of wfJobs.data.jobs) {
|
for (const job of wfJobs.data.jobs) {
|
||||||
if (job.name === 'Lint charts') {
|
if (job.name === 'Lint charts') {
|
||||||
result.set('lint', job.conclusion)
|
result.lint = job.conclusion
|
||||||
} else if (job.name === 'Install successful') {
|
} else if (job.name === 'Install successful') {
|
||||||
result.set('install', job.conclusion)
|
result.install = job.conclusion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(result)
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
- name: Get result
|
- name: Get result
|
||||||
run: echo "${{steps.get-workflow-jobs.outputs.result}}"
|
run: |
|
||||||
|
echo "${{steps.get-workflow-jobs.outputs.result}}"
|
||||||
|
echo ""
|
||||||
|
echo "${{steps.get-workflow-jobs.outputs.result.lint}}"
|
||||||
|
|
||||||
# # CI Passed
|
# # CI Passed
|
||||||
# - name: "add label: ok"
|
# - name: "add label: ok"
|
||||||
|
Loading…
Reference in New Issue
Block a user