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
Rename all occurrences of "size deltas report" to "deltas report"
The report may contain deltas data other than size, so the previous name was too constraining.
The only remaining use of "size deltas report" is the default sketches report path: 'size-deltas-reports'.
For backwards compatibility, the `enable-size-deltas-report` input will still be supported, but a warning will be displayed in the workflow run log notifying the user of the name change.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,9 +114,9 @@ Path in which to save a JSON formatted file containing data from the sketch comp
114
114
115
115
### `github-token`
116
116
117
-
GitHub access token used to get information from the GitHub API. Only needed for private repositories with `enable-size-deltas-report` set to `true`. It will be convenient to use [`${{ secrets.GITHUB_TOKEN }}`](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token). Default `""`.
117
+
GitHub access token used to get information from the GitHub API. Only needed for private repositories with `enable-deltas-report` set to `true`. It will be convenient to use [`${{ secrets.GITHUB_TOKEN }}`](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token). Default `""`.
118
118
119
-
### `enable-size-deltas-report`
119
+
### `enable-deltas-report`
120
120
121
121
Set to `true` to cause the action to determine the change in memory usage of the compiled sketches. If the workflow is triggered by a `pull_request` event, the comparison is between the pull request branch and the tip of the pull request's base branch. If the workflow is triggered by a `push` event, the comparison is between the pushed commit and its immediate parent. This may be used with the [`arduino/actions/libraries/report-size-deltas` action](https://github.com/arduino/actions/tree/master/libraries/report-size-deltas). Default `false`.
122
122
@@ -137,7 +137,7 @@ Storing the memory usage change report as a [workflow artifact](https://help.git
Copy file name to clipboardExpand all lines: action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ inputs:
25
25
github-token:
26
26
description: 'GitHub access token used to get information from the GitHub API. Only needed if you are using the size deltas report feature with a private repository.'
27
27
default: ''
28
-
enable-size-deltas-report:
28
+
enable-deltas-report:
29
29
description: 'Set to true to cause the action to determine the change in memory usage of the compiled sketches between the head and base refs of a PR and the immediate parent commit of a push'
0 commit comments