Skip to content

Update README.md

Update README.md #11

Workflow file for this run

name: PR Label Assignment
on:
pull_request:
types:
- closed
jobs:
process_pull_request:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
path: analyze
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install @octokit/rest
- name: PWd
run: ls
- name: Change directory
run: cd analyze
- name: Process PR and update JSON
run: node processPRs.js
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}