Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beeceej/lgtm
LGTM
https://github.com/beeceej/lgtm
actions fun funn github github-actions hacktoberfest hacktoberfest-accepted lgtm ocaml
Last synced: about 1 month ago
JSON representation
LGTM
- Host: GitHub
- URL: https://github.com/beeceej/lgtm
- Owner: beeceej
- Created: 2020-05-08T18:22:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-22T04:28:27.000Z (over 1 year ago)
- Last Synced: 2024-04-26T23:01:06.645Z (9 months ago)
- Topics: actions, fun, funn, github, github-actions, hacktoberfest, hacktoberfest-accepted, lgtm, ocaml
- Language: OCaml
- Homepage:
- Size: 3.4 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LGTM
Who knows what the heck LGTM even stands for anyway?
Let's Get This Merged?
Let's Get this Money?
Looks Good To me?
something else?
This is an action that responds to the acronym in Pull Requests or issues with the true meaning of LGTM, or atleast up to the Random Number Generator.
Setup:
Add the `GH_TOKEN` secret to your repo with a token that has permission to comment on Issues.
```
cat .github/workflows/action.yaml---
on:
issue_comment:
types: [created]jobs:
lgtm:
runs-on: ubuntu-latest
name: True meaning of LGTM
steps:
- name: Checkout
uses: actions/checkout@v2
- name: LGTM
uses: beeceej/[email protected]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```