From f46532174b21ff170898b6c8c496530890db25cb Mon Sep 17 00:00:00 2001 From: anandgupta42 <93243293+anandgupta42@users.noreply.github.com> Date: Tue, 7 Jul 2026 22:06:52 -0700 Subject: [PATCH] ci: add aireceipts pr-check (notice-only cost receipt) --- .github/workflows/aireceipts.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/aireceipts.yml diff --git a/.github/workflows/aireceipts.yml b/.github/workflows/aireceipts.yml new file mode 100644 index 000000000..0d0d03258 --- /dev/null +++ b/.github/workflows/aireceipts.yml @@ -0,0 +1,12 @@ +name: aireceipts +on: [pull_request] +permissions: + contents: read + pull-requests: write +jobs: + check: + runs-on: ubuntu-latest + steps: + - run: npx -y aireceipts-cli@latest pr-check + env: + GH_TOKEN: ${{ github.token }}