File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,18 @@ jobs:
3838 echo "No changes to README.md"
3939 fi
4040
41- - name : Commit and push changes
41+ - name : Create Pull Request
4242 if : steps.check-changes.outputs.changes == 'true'
43- run : |
44- git config --global user.name 'github-actions[bot]'
45- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
46- git add README.md
47- git commit -m "docs: update contributors list [skip ci]"
48- git push
43+ uses : peter-evans/create-pull-request@v5
44+ with :
45+ token : ${{ secrets.GITHUB_TOKEN }}
46+ commit-message : " docs: update contributors list"
47+ title : " Update contributors list"
48+ body : |
49+ Automated update of contributors list in README.md
50+
51+ This PR was created automatically by a GitHub Action workflow.
52+ branch : update-contributors
53+ branch-suffix : timestamp
54+ delete-branch : true
55+ base : main
You can’t perform that action at this time.
0 commit comments