Update README.md #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 status | |
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 |