Skip to content

plumbing: transport, Expose test suites in transport/file. #1367

plumbing: transport, Expose test suites in transport/file.

plumbing: transport, Expose test suites in transport/file. #1367

Workflow file for this run

name: PR Validation
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
permissions: {}
jobs:
check-commit-message:
name: Check Commit Messages
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check Package Prefix
uses: gsactions/commit-message-checker@v2
with:
pattern: '^(\*|docs|git|plumbing|utils|config|_examples|internal|storage|cli|build|backend): .+'
error: |
Commit message(s) does not align with contribution acceptance criteria.
Refer to https://github.com/go-git/go-git/blob/master/CONTRIBUTING.md#format-of-the-commit-message for more information.
excludeDescription: 'true'
excludeTitle: 'true'
checkAllCommitMessages: 'true'
accessToken: ${{ secrets.GITHUB_TOKEN }}