Skip to content

Commit 1566263

Browse files
authored
Merge pull request #7 from per1234/fix-default-value
Use appropriate default value for sketches-reports-source input
2 parents 4a2264c + 348b1e8 commit 1566263

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This action comments on the pull request with a report on the resulting change i
2525

2626
### `sketches-reports-source`
2727

28-
**Default**: "size-deltas-reports"
28+
**Default**: "sketches-reports"
2929

3030
The action can be used in two ways:
3131

@@ -83,8 +83,8 @@ jobs:
8383
enable-deltas-report: true
8484
- uses: actions/upload-artifact@v2
8585
with:
86-
name: size-deltas-reports
87-
path: size-deltas-reports
86+
name: sketches-reports
87+
path: sketches-reports
8888
```
8989

9090
### Workflow triggered by `pull_request` event

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Comments on the pull request with a report on the resulting change
33
inputs:
44
sketches-reports-source:
55
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.'
6-
default: 'size-deltas-reports'
6+
default: 'sketches-reports'
77
github-token:
88
description: 'GitHub access token used to comment the memory usage comparison results to the PR thread'
99
default: ${{ github.token }}

0 commit comments

Comments
 (0)