Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 750 Bytes

File metadata and controls

32 lines (26 loc) · 750 Bytes

Semantic Pull Request

Ensures that the Pull Request title matches the Conventional Commits spec.

How-to Guides

Get Started

  1. Add this action to your job in your workflow, here is an example:

    on:
      pull_request:
        types:
          - opened
          - edited
          - synchronize
    permissions:
      pull-requests: write
    #...
    jobs:
      something:
        name: Do something with git
        runs-on: ubuntu-latest
        steps:
          - uses: straw-hat-team/github-actions-workflows/semantic-pull-request@master