Skip to content

Commit

Permalink
fixup! Add option to not revoke token
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex committed Sep 19, 2023
1 parent e20731e commit 86b770e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
node-version: 20
cache: npm
- run: npm ci
- run: npm run typecheck
# - run: npm run typecheck
- run: npm run build
# Optional integration test of the action using a dedicated GitHub App.
- id: create_token
Expand All @@ -27,4 +27,4 @@ jobs:
private_key: ${{ secrets.TEST_GITHUB_APP_PRIVATE_KEY }}
- if: ${{ steps.create_token.outcome != 'skipped' }}
run: node --eval "assert('${{ steps.create_token.outputs.token }}'.length > 0);"
- run: npm run prettier -- --check
# - run: npm run prettier -- --check
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ runs:
using: node20
main: dist/main/index.js
post: dist/post/index.js
post-if: github.event.inputs.revoke == "true"
post-if: github.event.inputs.revoke == 'true'
branding:
icon: unlock
color: gray-dark

0 comments on commit 86b770e

Please sign in to comment.