ci: Correct pipeline
Some checks failed
Release / prepare (push) Failing after 7s
Push Validation / validate (push) Failing after 13m8s

This commit is contained in:
Micheal Wilkinson
2026-03-21 23:41:13 +00:00
parent b97da893fb
commit ac41276c50
2 changed files with 2 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ permissions:
jobs:
prepare:
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release): prepare ') }}
if: "${{ !startsWith(github.event.head_commit.message, 'chore(release): prepare ') }}"
runs-on: ubuntu-latest
steps:
- name: Checkout

View File

@@ -40,6 +40,7 @@ A `### Breaking` section is used in addition to Keep a Changelog's standard sect
- Coverage summary generation is now resilient when badge outputs or `coverage-packages.md` are unavailable, preventing summary-step hard failures after earlier skips.
- Push and PR validation no longer depend on external `vociferate/coverage-badge` action fetches, avoiding pipeline failures during external TLS/certificate outages.
- Release automation no longer depends on external `vociferate` action fetches; local repository scripts now prepare tags from `CHANGELOG.md` and publish Gitea releases directly via the API, avoiding TLS/certificate outages on the external action host.
- `prepare-release.yml` now quotes the job-level `if:` expression guarding release-preparation commits, fixing YAML parsing errors caused by the colon in the release commit message prefix.
- README badge link target updated to `actions/runs/latest?workflow=...` format per workflow standards.
- CI security scanning now uses GitHub Marketplace actions (`securego/gosec` and `golang/govulncheck-action`) instead of manual tool installation, improving reliability and caching.
- CI setup compatibility fix: gosec scanner now references the correct public action source (`securego/gosec`), resolving action clone failures in Gitea runners.