Skip to content

Commit

Permalink
Build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pngwn committed Aug 6, 2024
1 parent 56aebd6 commit d33d647
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion actions/set-commit-status/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85295,7 +85295,7 @@ async function run() {
run_id: parseInt(run_id)
});
const message = "Skipped — No changes detected";
octokit.rest.repos.createCommitStatus({
const res = await octokit.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha,
Expand All @@ -85304,5 +85304,8 @@ async function run() {
context: name,
target_url: url || workflow_run.data.html_url
});
console.log({ sha, name, url });
console.log(JSON.stringify(workflow_run, null, 2));
console.log(JSON.stringify(res, null, 2));
}
run();

0 comments on commit d33d647

Please sign in to comment.