From 55e83f97249c3394b317daad6949a03cadf479e4 Mon Sep 17 00:00:00 2001 From: caballeto Date: Fri, 1 May 2026 15:11:45 +0200 Subject: [PATCH] =?UTF-8?q?chore(ci):=20fix=20spec-check=20download=20step?= =?UTF-8?q?=20=E2=80=94=20gh=20api=20has=20no=20-o=20flag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `gh api ... -o ` silently errored ("unknown shorthand flag: 'o'") on every invocation, so every mono-dispatched spec_updated event that reached this repo would have bailed on the download step before regenerating types. Switched to a `> ` redirect. Discovered while debugging why the forensic spec change on mono didn't produce auto-regen PRs here. Made-with: Cursor --- .github/workflows/spec-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/spec-check.yml b/.github/workflows/spec-check.yml index 435938d..f48cae7 100644 --- a/.github/workflows/spec-check.yml +++ b/.github/workflows/spec-check.yml @@ -25,7 +25,7 @@ jobs: run: | gh api repos/devhelmhq/mono/contents/docs/openapi/monitoring-api.json \ -H "Accept: application/vnd.github.raw+json" \ - -o docs/openapi/monitoring-api.json + > docs/openapi/monitoring-api.json env: GH_TOKEN: ${{ secrets.MONOREPO_DISPATCH_TOKEN }}