ddradar / lgtm-action

Post image if you comment "LGTM"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Post LGTM Image

last commit release version Node.js CI codecov CodeFactor License

日本語版のガイドはこちらです。

Post image if you comment "LGTM"

TOC

Usage

See action.yml

Basic

name: Send LGTM Image
on:
  issue_comment:
    types: [created]
  pull_request_review:
    types: [submitted]
jobs:
  post:
    runs-on: ubuntu-latest
    steps:
      - uses: ddradar/lgtm-action@v2.0.2
        with:
          image-url: "{ Your LGTM image URL }"
          search-pattern: |
            ^(lgtm|LGTM)$
            ^:\+1:$

Use with Choose Random Action

name: Send Random LGTM Image
on:
  issue_comment:
    types: [created]
  pull_request_review:
    types: [submitted]
jobs:
  post:
    runs-on: ubuntu-latest
    if: (!contains(github.actor, '[bot]')) # Exclude bot comment
    steps:
      - uses: ddradar/choose-random-action@v2
        id: act
        with:
          contents: |
            https://example.com/your-lgtm-image-1.jpg
            https://example.com/your-lgtm-image-2.jpg
            https://example.com/your-lgtm-image-3.jpg
      - uses: ddradar/lgtm-action@v2.0.2
        with:
          image-url: ${{ steps.act.outputs.selected }}

Options

Name Required? Description Default
image-url Yes Set your image URL -
search-pattern No Set regexp pattern this action reacts.
This action uses Multi-line(RegExp.prototype.multiline) search.
^(lgtm|LGTM)$
token No GitHub Access Token to post issue comment. (requires issues:write permission) ${{ github.token }}

Screenshots

  1. Post "LGTM" or "lgtm" issue comment. Send issue comment
  2. Or review comment. Send review comment
  3. Post LGTM image automatically. LGTM image post

License

MIT License

Contributing

See guide.

About

Post image if you comment "LGTM"

License:MIT License


Languages

Language:TypeScript 99.5%Language:Shell 0.5%