Skip to content

Commit be07d1d

Browse files
committed
Add descriptive name to size deltas report step
The `name` key of a GitHub Actions workflow step is used to define the name used to identify that step to humans. When one is not defined, a more cryptic name is generated from the machine readable content of the step. A descriptive name will make it easier to understand the workflow run logs.
1 parent 38c01c5 commit be07d1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/compile-examples.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ jobs:
120120
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
121121
path: ${{ env.SKETCHES_REPORTS_PATH }}
122122

123-
- uses: arduino/report-size-deltas@v1
123+
- name: Comment size deltas report to PR
124+
uses: arduino/report-size-deltas@v1
124125
# If actions/download-artifact failed, there are no artifacts to report from.
125126
if: steps.download-artifact.outcome == 'success'
126127
with:

0 commit comments

Comments
 (0)