Commit graph

5 commits

Author SHA1 Message Date
60439e3b11
fix: invalid API url
I misstyped the API URL T-T
2025-03-10 23:30:18 +01:00
73142cfab8
feat: add nix for formatting
Also adds CI tests!
2025-03-10 23:22:13 +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
72a3513f46
refactor(action): separate retrieving the old report
This makes the code easier to read
2024-12-18 22:25:34 +01:00