Files
fizzy/.github/workflows/ci-saas.yml
T
Mike Dalessio 6a244b17e6 Use new FIZZY_GH_TOKEN with limited access
because this is a public repo and so doesn't have access to the
private org secret GH_TOKEN anymore.
2025-12-12 13:04:26 -05:00

22 lines
333 B
YAML

name: CI (SaaS)
on:
push:
permissions:
contents: read
jobs:
test_oss:
name: Test (OSS)
uses: ./.github/workflows/test.yml
with:
saas: false
test_saas:
name: Test (SaaS)
uses: ./.github/workflows/test.yml
with:
saas: true
secrets:
FIZZY_GH_TOKEN: ${{ secrets.FIZZY_GH_TOKEN }}