Commit graph

7 commits

Author SHA1 Message Date
7253c64753
fix: use B suffix for sizes
This makes it clearer that we are talking about bytes c:
2024-12-22 13:55:45 +01:00
983bec568c
feat(comment): add some context on how to read the data
This should help them out to reduce the size.

Also rectify misunderstanding about NAR Size.
2024-12-19 23:53:24 +01:00
cd38cd76fd
fix(sh): ${VAR:-val} and ${VAR-val} are different
Who would've thought?

`:` means or empty, so:

```sh
VAR=
echo "${VAR-default}" # prints 'default'

VAR=''
echo "${VAR-default}" # prints ''

VAR=''
echo "${VAR:-default}" # prints 'default'
```

;-; nothing wants to work
2024-12-19 23:15:22 +01:00
39f58ee538
refactor!(action): detect when in private branches
This removes the need to use the private-repo-workaround input.
2024-12-19 22:43:51 +01:00
c3362d4650
fix(action): small typos and weird stuff
Why is it not downloading the previous report?
2024-12-18 16:20:41 +01:00
08d9598c26
fix(action): better logging
Be more clear about why it failed
2024-12-18 16:06:58 +01:00
46291fc850
feat!(report): generate JSON instead of markdown
This allows us to analyze the report more easily. There is experimental
support for comparing against a base report, but we don't expose that
functionality to the action.
2024-12-17 23:17:48 +01:00