Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set default value of github-token #27

Merged
merged 2 commits into from Jan 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Expand Up @@ -30,8 +30,7 @@ jobs:
- run: npm run build
- run: npm test
- uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
with:
path-to-profile: profile.cov
parallel: true
job-number: ${{ strategy.job-index }}
Expand All @@ -52,5 +51,4 @@ jobs:
- run: npm run build
- uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
1 change: 1 addition & 0 deletions action.yml
Expand Up @@ -5,6 +5,7 @@ inputs:
github-token:
description: Coveralls uses this token to verify the posted coverage data on the repo and create a new check based on the results.
required: true
default: '${{ github.token }}'
path-to-profile:
description: a path to your cover profile.
required: false
Expand Down