Skip to content

Commit

Permalink
ci(skip): adapt checks with debug profiles (#3953)
Browse files Browse the repository at this point in the history
  • Loading branch information
clearloop authored May 9, 2024
1 parent aaadcdb commit 61aed20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/message/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const BUILD_LABELS = [
"A4-insubstantial",
"A2-mergeoncegreen",
];
const CHECKS = ["check", "build"];
const CHECKS = ["check / linux", "build / linux (debug)"];
const DEPBOT = "[depbot]";
const WINDOWS_NATIVE = "E1-forcenatwin";
const MACOS = "E2-forcemacos";
Expand All @@ -33,17 +33,17 @@ const [owner, repo] = ["gear-tech", "gear"];
async function mock(head_sha) {
const token = core.getInput("token");
const octokit = github.getOctokit(token);
for (const check of CHECKS) {
for (const name of CHECKS) {
const { data: res } = await octokit.rest.checks.create({
owner,
repo,
name: `${check} / linux`,
name,
head_sha,
status: "completed",
conclusion: "success",
});

core.info(`Created check "${check} / linux"`);
core.info(`Created check "${name}"`);
core.info(res.html_url);
}
}
Expand Down

0 comments on commit 61aed20

Please sign in to comment.