Commit graph

3 commits

Author SHA1 Message Date
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
72a3513f46
refactor(action): separate retrieving the old report
This makes the code easier to read
2024-12-18 22:25:34 +01:00