chore(deps): update cplieger/ci digest to 69db8af (#153) #384
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Synced from cplieger/ci/.github/workflow-templates/ci.yml — DO NOT EDIT. | |
| # Single CI template for all releaseable repos. The central ci.yaml reusable | |
| # workflow auto-detects repo surfaces (go.mod / jsr.json / Dockerfile / nested | |
| # web frontend) and dispatches to the appropriate reusable workflow. Hybrid | |
| # repos (Go + TS web frontend) run multiple jobs in parallel automatically — | |
| # no per-repo configuration needed. | |
| # | |
| # No paths-ignore: the required status check (ci / validate) can never be | |
| # satisfied if the workflow is skipped by a path filter — GitHub leaves the | |
| # check pending forever, permanently blocking docs-only PRs. The workflow | |
| # therefore always runs; the central ci.yaml gates the heavy language jobs on a | |
| # real code change (so docs-only pushes run only detect + markdown + validate) | |
| # and always runs the markdown lint. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| uses: cplieger/ci/.github/workflows/ci.yaml@69db8afac8703bd5613724aac0aea809d11cad87 # v2 |