A good emoji is worth a thousand words.
Use this GitHub action to ensure that all PR titles start with an emoji!
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 }}