Skip to content

Commit

Permalink
fixup! Test wrong input
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex committed Sep 9, 2023
1 parent c2dc007 commit 6576ee0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
# The only required permission is `Repository permissions > Metadata: Read-only`.
app_id: ${{ vars.TEST_GITHUB_APP_ID }}
private_key: ${{ secrets.TEST_GITHUB_APP_PRIVATE_KEY }}
installation_retrieval_mode: id
installation_retrieval_mode: organization
- run: node --eval "assert('${{ steps.generate_token.outputs.token }}'.length > 0);"
if: ${{ steps.generate_token.outcome != 'skipped' }}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ try {
info("Token generated successfully!");
} catch (error) {
// Using `console.error()` instead of only passing `error` to `setFailed()` for better error reporting.
console.debug(error);
console.error(error);
setFailed("");
}

0 comments on commit 6576ee0

Please sign in to comment.