Skip to content
This repository was archived by the owner on Jul 29, 2021. It is now read-only.

Commit 2b97dd7

Browse files
committedFeb 23, 2021
modified lgtm github action to run on LGTM
1 parent b051998 commit 2b97dd7

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed
 

‎.github/workflows/docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# credits:
2-
# - CI with Jest: https://joelhooks.com/jest-and-github-actions
3-
name: CI
1+
name: Building Docs
42
on:
53
push:
64
branches:
@@ -29,12 +27,14 @@ jobs:
2927
# build doc
3028
- name: Build docs
3129
run: npm run docs
30+
# add and commit
3231
- name: Commit docs
3332
run: |
3433
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
3534
git config --local user.name "github-actions[bot]"
3635
git add -f docs
3736
git commit -m "Generating docs"
37+
# push action
3838
- name: Push changes
3939
uses: ad-m/github-push-action@master
4040
with:

‎.github/workflows/lgtm.yml

-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ jobs:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1515
GIPHY_API_KEY: ${{ secrets.GIPHY_API_KEY }}
1616
with:
17-
trigger: '[".*looks good to me.*"]'
18-
override: true
1917
source: "giphy"

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ config.json
22
node_modules/
33
.vscode/
44
coverage/
5-
docs/
5+
docs/
6+
package-lock.json

0 commit comments

Comments
 (0)
This repository has been archived.