The Inspect step had `${{ github.ref == ''refs/heads/main'' ... }}` with
doubled single quotes (YAML-scalar escaping) inside a `run: |` block, which
GitHub's expression parser rejects, failing the whole workflow at startup
(no jobs run). Replace with a plain shell conditional on $GITHUB_REF.
|
||
|---|---|---|
| .. | ||
| ci.yml | ||
| docker-publish.yml | ||
| issue-description-check.yml | ||
| pr-description-check.yml | ||