Open larseggert opened 8 months ago
AFAIK, that's related witht the github token provided. In the documentation, they say it uses ${{ github.token }}
which I understand uses the github-actions user.
To change the icon an user name then you need to create a GH user, put the icon and user name you want. Create a token for that user and use it to run the action using the parameter github-token
:
- name: Write a comment that will be deleted at the end of the job
uses: thollander/actions-comment-pull-request@v3
with:
message: |
The PR is being built...
github-token: ${{ secrets.YOUR_USER_TOKEN }}
Is there any way to change the commenter name, icon and/or URL that name and icon link to?