feat: Add Alex
parent
bafb6c1342
commit
587d4cad63
|
@ -0,0 +1,23 @@
|
|||
name: Alex Recommends
|
||||
|
||||
on: pull_request
|
||||
|
||||
jobs:
|
||||
alex:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 12.x
|
||||
- name: Comment on new PR
|
||||
uses: brown-ccv/alex-recommends@v1.2.1
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
message_id: 'alex'
|
||||
no_binary: false
|
||||
profanity_sureness: 2
|
||||
pr_only: false
|
||||
glob_pattern: 'services/**'
|
13
package.json
13
package.json
|
@ -4,10 +4,16 @@
|
|||
"description": "",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
"lint": "eslint . --fix",
|
||||
"spell": "cspell /**/",
|
||||
"spell-code": "cspell src/**/",
|
||||
"ci": "eslint . --fix && cspell /**/"
|
||||
"spell:code": "cspell src/**/",
|
||||
"lint": "npx eslint src",
|
||||
"lint:fix": "yarn run lint -- --fix",
|
||||
"lint:language": "alex src/**/",
|
||||
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\"",
|
||||
"prettier:code": "npx prettier src --check",
|
||||
"prettier:code:fix": "yarn run prettier -- --write",
|
||||
"prettier:all:fix": "prettier . --write",
|
||||
"format": "yarn run prettier:all:fix && yarn run lint:fix"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
|
@ -21,6 +27,7 @@
|
|||
"json-to-frontmatter-markdown": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"alex": "^11.0.0",
|
||||
"cspell": "^6.16.0",
|
||||
"eslint": "^8.29.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
|
|
Loading…
Reference in New Issue