Skip to content

Update README.md

Update README.md #11

Workflow file for this run

name: Pull Request Open
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
jobs:
PR-Open:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install project dependencies
run: |
npm install
npm install @actions/core
npm install @actions/github
npm install axios
- name: Analyze Pull Request
run: node .github/scripts/pr-analyzer.js
env:
PR_NUMBER: ${{ github.event.number }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}