An open API service indexing awesome lists of open source software.

https://github.com/loadmill/1kwords


https://github.com/loadmill/1kwords

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# 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/`

```yml
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 }}
```