Skip to content

loadmill/1kWords

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

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/1kWords@v1.0.6

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