Skip to content

新增高数

新增高数 #8

Workflow file for this run

name: Thanks!
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@main
- name: Update README
run: |
echo ">- 感谢:" >> README.md
echo "Author: ${{ github.event.head_commit.author.name }}" >> README.md
echo -e "Email: ${{ github.event.head_commit.author.email }} \n" >> README.md
- name: Commit and Push Changes
run: |
git config user.name "Jiahuan-bot"
git config user.email "[email protected]"
git add README.md
git commit -m "[salute]Thanks for pr from @${{ github.event.head_commit.author.name }} "
git push