Skip to content

Update README.md

Update README.md #65

Workflow file for this run

name: PR Label Assignment
on:
pull_request:
types:
- closed
jobs:
process_pull_request:
if: "!contains(github.event.pull_request.labels.*.name, 'bot')"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: |
cd ./analyze
npm install @octokit/rest
- name: Change directory and execute script
run: |
cd ./analyze
npm i
node processPRs.js
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Commit changes
run: |
rm -rf analyze/node_modules/ analyze/package-lock.json analyze/package.json
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add ./analyze/author.json
git commit -m "Update author.json"
echo "https://${{ secrets.GITH }}@github.com/AvineshTripathi/cred.git HEAD:main"
git push https://${{ secrets.GH_TOKEN }}@github.com/AvineshTripathi/cred.git HEAD:main