Add LGTM Action

This commit is contained in:
Gary Ewan Park 2019-10-17 07:55:30 +01:00 committed by GitHub
parent cd6abf04af
commit 15c063deb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/lgtm.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Send LGTM reaction
on:
issue_comment:
types: [created]
pull_request_review:
types: [submitted]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1.0.0
- uses: micnncim/action-lgtm-reaction@0.5.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_ISSUE_NUMBER: ${{ github.event.issue.number }}
GITHUB_COMMENT_BODY: ${{ github.event.comment.body }}
GITHUB_COMMENT_ID: ${{ github.event.comment.id }}
GITHUB_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
GITHUB_REVIEW_BODY: ${{ github.event.review.body }}
GITHUB_REVIEW_ID: ${{ github.event.review.id }}
with:
trigger: '^(lgtm|LGTM)!?$'
override: true
source: lgtmapp