Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added github action that records contributor and PR info in credits.md file #161

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/credits.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
### Timestamp:
2023-11-27T18:38:19Z
### Contributor:
qcdyx
#### PR Number:
161
#### PR Title:
feat: added github action that records contributor and PR info in credits.md file
########################################################################################
35 changes: 35 additions & 0 deletions .github/workflows/update-credits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 "########################################################################################" >> .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 }}
Loading