Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Ramon Petgrave <ramon.petgrave64@gmail.com>
  • Loading branch information
ramonpetgrave64 committed Feb 29, 2024
1 parent e3e1988 commit 484e2e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/detect-workflow-js/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function run() {
const token = core.getInput("token");
const repoName = process.env.GITHUB_REPOSITORY;
if (!repoName) {
core.setFailed("No repository detected.xxx");
core.setFailed("No repository detected");
return;
}
// Set outputs.
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/detect-workflow-js/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/detect-workflow-js/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function run(): Promise<void> {

const repoName = process.env.GITHUB_REPOSITORY;
if (!repoName) {
core.setFailed("No repository detected.xxx");
core.setFailed("No repository detected");
return;
}

Expand Down

0 comments on commit 484e2e3

Please sign in to comment.