fix: core reference, template

This commit is contained in:
NeverBehave
2021-01-10 23:34:58 -05:00
parent 0c46346109
commit 05ce88e8db
3 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,11 @@
<!--
请不要删除, 自行修改已有结构, 这会导致自动检测失败;不符合要求的部分留空即可
Do not remove existing titles or structures: it breaks CI
-->
## 该 PR 相关 Issue / Involved issue
Close #
@@ -23,7 +31,7 @@ NOROUTE
```
-->
<!-- FILL HERE -->
<!-- 在下方填写 FILL BELOW -->
```routes
```

View File

@@ -37,6 +37,6 @@ jobs:
const link = process.env.TEST_BASEURL
const routes = JSON.parse(process.env.TEST_ROUTES)
const number = context.payload.pull_request.number
console.log(link, routes, number)
core.info(`${link}, ${routes}, ${number}`)
const script = require(`${process.env.GITHUB_WORKSPACE}/scripts/workflow/test-route/test.js`)
return await script({github, context}, link, routes, number)
return await script({github, context, core}, link, routes, number)

View File

@@ -1,6 +1,6 @@
/* eslint-disable */
module.exports = async ({ github, context }, baseUrl, routes, number) => {
module.exports = async ({ github, context, core}, baseUrl, routes, number) => {
if (routes[0] === 'NOROUTE') {
return;
}
@@ -13,7 +13,7 @@ module.exports = async ({ github, context }, baseUrl, routes, number) => {
let com = 'Successfully generated as following:\n\n';
for (const lks of links) {
console.log('testing route: ', lks);
core.info(`testing route: ${lks}`);
// Intended, one at a time
const res = await github.request(`GET ${lks}`).catch((err) => {
com += `