init pr reminder

This commit is contained in:
Overtorment 2021-07-26 20:45:42 +01:00
parent 96452c5ac1
commit 80cd2439da
3 changed files with 10 additions and 7 deletions

View File

@ -7,9 +7,12 @@ jobs:
pull-request-reviewer-reminder:
runs-on: ubuntu-latest
steps:
- name: install
run: npm i
- uses: actions/checkout@v2
- name: notify
run: ./node_modules/.bin/ts-node src/main-pr-review-reminders.ts
- name: Use Node.js
uses: actions/setup-node@v1
- name: Build & run
run: |
npm install --production
./node_modules/.bin/ts-node src/main-pr-review-reminders.ts

3
package-lock.json generated
View File

@ -10094,8 +10094,7 @@
"typescript": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.3.tgz",
"integrity": "sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==",
"dev": true
"integrity": "sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg=="
},
"union-value": {
"version": "1.0.1",

View File

@ -17,7 +17,8 @@
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^4.0.0",
"ts-node": "^9.0.0"
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.14",