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

Use appropriate default value for sketches-reports-source input #7

Merged
merged 1 commit into from
Sep 16, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This action comments on the pull request with a report on the resulting change i

### `sketches-reports-source`

**Default**: "size-deltas-reports"
**Default**: "sketches-reports"

The action can be used in two ways:

Expand Down Expand Up @@ -68,8 +68,8 @@ jobs:
enable-deltas-report: true
- uses: actions/upload-artifact@v2
with:
name: size-deltas-reports
path: size-deltas-reports
name: sketches-reports
path: sketches-reports
```

### Workflow triggered by `pull_request` event
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: 'Comments on the pull request with a report on the resulting change
inputs:
sketches-reports-source:
description: 'When run from scheduled workflow, name of the workflow artifact that contains sketches reports. When run from a pull request triggered workflow, path to the folder containing sketches reports.'
default: 'size-deltas-reports'
default: 'sketches-reports'
github-token:
description: 'GitHub access token used to comment the memory usage comparison results to the PR thread'
default: ${{ github.token }}
Expand Down