Skip to content
feather

GitHub Action

1kWords

v1.0.6 Latest version

1kWords

feather

1kWords

Pull requests titles must include emojis 🤖

Installation

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

              

- name: 1kWords

uses: loadmill/[email protected]

Learn more about this action in loadmill/1kWords

Choose a version

1kWords

A good emoji is worth a thousand words.

Use this GitHub action to ensure that all PR titles start with an emoji!

Example Workflow YML File

Create this file in .github/workflows/

name: "Validate emoji"
on:
  pull_request:
    types: [opened, edited, reopened]

jobs:
  validate-emoji:
    runs-on: ubuntu-latest
    steps:
    
    - name: Pull request title should start with emoji
      uses: loadmill/[email protected]

    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}