KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
lgtm
★ 9
Open GitHub ↗
LGTM
Download README (.md)
Explore Similar Repositories
ner-spacy-doccano
:
NER using Doccano / Spacy EN
linux-on-litex-blackparrot
:
Linux on Litex for BlackParrot Core
Bubble-Sheet-Scanner
:
Bubble sheet multiple choice scanner and test grader using OpenCV.
svelte-and-typescript
:
Example project on how you can use Typescript with Svelte
Stocks-with-Python
:
Get SMS Notifications of changes in Stock Market with Python
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
lgtm
?
Download (.md)
# 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/lgtm@v0.0.3 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} ```