Skip to content

Commit

Permalink
test: 🔊 actually print repo input
Browse files Browse the repository at this point in the history
  • Loading branch information
meisZWFLZ authored Feb 2, 2024
1 parent b8fc2a9 commit e73227a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function getRepositoryIdentifier(): RepositoryIdentifier {
const repo: { owner: string; repo: string } = { owner: '', repo: '' }
const repoInput = core.getInput('repo')

Check failure on line 14 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `··`
core.setOutput('repo', repoInput);
core.info('Repository input: ' + repoInput);

Check failure on line 15 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Unexpected string concatenation

Check failure on line 15 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `;`

Check failure on line 15 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Extra semicolon

Check failure on line 16 in src/main.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `··`
if (repoInput.match(repoInputRegex)) {
const parsedRepoInput = repoInput.split('/')
Expand Down

0 comments on commit e73227a

Please sign in to comment.