-
Notifications
You must be signed in to change notification settings - Fork 101
35 lines (32 loc) · 1.3 KB
/
update_credits.yml
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
name: Update Credits upon creating PR
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
jobs:
update-credits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- run: |
echo "### Timestamp:" >> .github/credits.md
echo "$(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> .github/credits.md
echo "### Contributor:" >> .github/credits.md
echo "${{ github.event.pull_request.user.login }}" >> .github/credits.md
echo "#### PR Number:" >> .github/credits.md
echo "${{ github.event.pull_request.number }}" >> .github/credits.md
echo "#### PR Title:" >> .github/credits.md
echo "${{ github.event.pull_request.title }}" >> .github/credits.md
echo "########################################################################################x" >> .github/credits.md
git add .github/credits.md
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "Update credits.md with contributor information"
git push origin ${{ github.event.pull_request.head.ref}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}