You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# arduino/report-size-deltas action
2
2
3
-
This action comments on the pull request with a report on the change in memory usage of an example sketch. This should be run from a [scheduled workflow](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#onschedule).
3
+
This action comments on the pull request with a report on the resulting change in memory usage of the [Arduino](https://www.arduino.cc/) sketches compiled by the [`arduino/compile-sketches`](https://github.com/arduino/compile-sketches) action. This should be run from a [scheduled workflow](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#onschedule).
4
4
5
5
## Inputs
6
6
7
7
### `size-deltas-reports-artifact-name`
8
8
9
-
Name of the workflow artifact that contains the memory usage data, as specified to the actions/upload-artifact action via the name argument. Default "size-deltas-reports".
9
+
Name of the workflow artifact that contains the memory usage data, as specified to the [`actions/upload-artifact`](https://github.com/actions/upload-artifact) action via its `name` input. Default "size-deltas-reports".
Copy file name to clipboardExpand all lines: action.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
name: 'Report Arduino Sketch Size Deltas'
2
-
description: 'Comments on the pull request with a report on the change in memory usage of an example sketch'
2
+
description: 'Comments on the pull request with a report on the resulting change in memory usage of Arduino sketches'
3
3
inputs:
4
4
size-deltas-reports-artifact-name:
5
-
description: 'Name of the workflow artifact that contains the memory usage data, as specified to the actions/upload-artifact action via the name argument'
5
+
description: 'Name of the workflow artifact that contains the memory usage data, as specified to the actions/upload-artifact action via its name input'
6
6
default: 'size-deltas-reports'
7
7
github-token:
8
8
description: 'GitHub access token used to comment the memory usage comparison results to the PR thread'
0 commit comments