Skip to content

Releases: arechste/.github

v1.0.0 — public distribution channel for reusable workflows

11 Apr 12:31

Choose a tag to compare

First version of the public distribution channel for reusable GitHub Actions workflows.

What's in this release

  • .github/workflows/convention-check.yml — PR title and commit message format validator (conventional commits). Published from arechste/git-organizer's canonical source via tools/maintenance/sync-github-templates.sh.

How to consume

In any arechste/* repo's workflow:

jobs:
  check:
    uses: arechste/.github/.github/workflows/convention-check.yml@v1.0.0
    with:
      check-pr-title: true
      check-commits: true
      require-labels: false

Pin by SHA for supply-chain safety:

uses: arechste/.github/.github/workflows/convention-check.yml@<SHA>  # v1.0.0

Background

Replaces the cross-repo private-to-private reusable workflow reference that had been silently failing with startup_failure since March 10. See arechste/dotclaude#470 for the incident and arechste/git-organizer#221 for the sync-script extension that publishes workflows here.