Skip to content

Commit

Permalink
Update author.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AvineshTripathi authored Nov 16, 2023
1 parent bc4a846 commit 05f7d55
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/author.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,18 @@ jobs:
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
git push
- 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 }}

0 comments on commit 05f7d55

Please sign in to comment.