-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.38 KB
/
author.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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: |
cd ./analyze
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add author.json
git commit -m "Update author.json" author.json
echo "https://${{ secrets.GITH }}@github.com/AvineshTripathi/cred.git HEAD:main"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/AvineshTripathi/cred.git HEAD:main
- name: Create pull request
run: |
gh pr create --base main --title "Update author.json" --body "Changes made to author.json" --reviewer "AvineshTripathi"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}