Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit b38bddf

Browse files
fix: remove "/"
1 parent e752d24 commit b38bddf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const run = async (inputs: Inputs, envs: Envs): Promise<void> => {
9090
const octokit = github.getOctokit(inputs.githubToken);
9191

9292
if (envs.isWorkflow) {
93-
inputs.context = `${github.context.workflow} / (${github.context.eventName})`;
93+
inputs.context = `${github.context.workflow} (${github.context.eventName})`;
9494
} else {
9595
inputs.context = `${github.context.workflow} / ${github.context.job} (${github.context.eventName})`;
9696
}

0 commit comments

Comments
 (0)