18b0da5f8f
fix: mistyped Accept header?
...
/ check (treefmt) (push) Successful in 3s
/ check-renovaterc (push) Successful in 3s
/ report-size (push) Successful in 1s
For some reason `forgejo` returns HTML from a comment update request.
2025-03-10 23:26:00 +01:00
73142cfab8
feat: add nix for formatting
...
/ check (treefmt) (push) Successful in 3s
/ check-renovaterc (push) Successful in 2s
/ report-size (push) Successful in 2s
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