I have a workflow like this:
- name: "Make commit"
run: |
...
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
git commit -m "Update generated docs"
...
-
uses: "peter-evans/create-pull-request@v7"
with:
token: "${{ secrets.PAT_TO_PUSH_TO_DOCS }}"
path: "docs-repo"
title: "Auto-generated PR: Update docs"
body: "This PR was auto-generated by GitHub Actions."
branch: "auto-update-branch"
and I see that the PR gets created correctly, but under the username actions-user: https://github.com/actions-user
This is neither the user that made the commit, nor the default user specified in
|
default: 'github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>' |
I have a workflow like this:
and I see that the PR gets created correctly, but under the username
actions-user: https://github.com/actions-userThis is neither the user that made the commit, nor the default user specified in
create-pull-request/action.yml
Line 27 in 450b15d