From 284a8d39781591375f3c19ccd26589d206b7cb7e Mon Sep 17 00:00:00 2001 From: Cuong Nguyen Duc <90603605+cuong-ts@users.noreply.github.com> Date: Wed, 24 Nov 2021 21:59:16 +0700 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4a27e08 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Send LGTM reaction +on: + issue_comment: + types: [created] + pull_request_review: + types: [submitted] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: micnncim/action-lgtm-reaction@master # Set some version. + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GIPHY_API_KEY: ${{ secrets.GIPHY_API_KEY }} + with: + trigger: '[".*looks good to me.*"]' + override: true + source: 'giphy'