https://github.com/loadmill/1kwords
https://github.com/loadmill/1kwords
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/loadmill/1kwords
- Owner: loadmill
- License: mit
- Created: 2022-03-16T16:33:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-21T12:34:11.000Z (about 4 years ago)
- Last Synced: 2025-01-28T05:15:30.620Z (over 1 year ago)
- Language: TypeScript
- Size: 1.73 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 }}
```