-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from beeceej/readme-updates
LGTM: readme and documentation cleanup
- Loading branch information
Showing
3 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,40 @@ | ||
# 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 }} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters