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'