Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 841 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 841 Bytes

draw-action

Draw Yu-Gi-Oh! Card on GitHub issue.

example

It takes about 10 seconds to draw.

Inputs

github-token

Required The GitHub token used to create an authenticated client.

Example usage

name: Draw Yu-Gi-Oh! Card
on:
  issue_comment:
    types: [created, edited]

jobs:
  draw:
    runs-on: ubuntu-latest
    steps:
      - name: Draw Yu-Gi-Oh! Card on GitHub issue
        uses: Doarakko/draw-action@main
        if: >-
          contains(github.event.comment.body, 'draw')
          || contains(github.event.comment.body, 'ドロー')
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}

Demo

Please comment "draw" to this issue!

Credits