Skip to content

Commit

Permalink
third
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobrauchtgit committed Mar 11, 2024
1 parent fb5cacc commit d0e7123
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ inputs:
repo-token:
description: 'Token for the repo'
required: true
default: ${{ github.token }}
outputs:
foundLogs:
description: 'console.logs and where they are found'
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { check } from './check'

export async function run(): Promise<void> {
try {
const token = core.getInput('token')
const token = core.getInput('repo-token')
const logPositions = findConsoleLogs('./src')
const output = await check(token, logPositions)
core.setOutput('logs', output)
Expand Down

0 comments on commit d0e7123

Please sign in to comment.