Skip to content
check-circle

GitHub Action

Enforce Pull Request has a valid gitmoji prefix

v0.0.1 Latest version

Enforce Pull Request has a valid gitmoji prefix

check-circle

Enforce Pull Request has a valid gitmoji prefix

This action enforces that a pull request title contains a valid gitmoji prefix

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Enforce Pull Request has a valid gitmoji prefix

uses: georgepstaylor/gitmoji-pr-title-enforcer@v0.0.1

Learn more about this action in georgepstaylor/gitmoji-pr-title-enforcer

Choose a version

gitmoji-pr-title-enforcer

A simple action to enforce the use of gitmoji in PR titles.

It will leave a comment on the PR like so: #2 (comment) or #2 (comment) Depending on whether the PR title is valid or not.

Usage

name: Enforce gitmoji PR
on:
  pull_request:
    types: [opened, edited, reopened, synchronize]
permissions:
  pull-requests: write
jobs:
  gitmoji-pr-title:
    runs-on: ubuntu-latest
    steps:
      - name: Enforce gitmoji PR title
        uses: georgepstaylor/gitmoji-pr-title-enforcer@v1.0.0
        with:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Using the above example verbatim, you can use the job title gitmoji-pr-title as a required check.