Skip to content

quaternionmedia/haiku

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Haiku

GitHub Action to detect a haiku in an issue.

Usage

Add the following workflow to your repository at .github/workflows/haiku.yml:

name: 🎎 Haiku detection
on:
  issues:
    types: [opened, reopened, edited]

jobs:
  detect_haiku:
    runs-on: ubuntu-latest
    steps:
      - name: Check for haiku
        uses: quaternionmedia/haiku@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}