Skip to content

plumbing: transport, refactor and define transport operations #84

plumbing: transport, refactor and define transport operations

plumbing: transport, refactor and define transport operations #84

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): .+'
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 }}