-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix: manage absolute path #180
Conversation
6d1a59a
to
c245ca1
Compare
c245ca1
to
71b75d7
Compare
Current branch is |
Comment Pull Request - GitHub ActionsWhat is it ?A GitHub action that comments with a given message the pull request linked to the pushed branch. UsageClassic usageon: pull_request
jobs:
example_comment_pr:
runs-on: ubuntu-latest
name: An example job to comment a PR
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Hello world ! :wave: Comment a file contentThanks to the - name: PR comment with file
uses: thollander/actions-comment-pull-request@v2
with:
filePath: /path/to/file.txt Setting reactionsYou can also set some reactions on your comments through the - name: PR comment with reactions
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Hello world ! :wave:
reactions: eyes, rocket Specifying which pull request to comment onYou can explicitly input which pull request should be commented on by passing the ...
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Hello world ! :wave:
pr_number: 123 # This will comment on pull request #123 Update a commentEditing an existing comment is also possible thanks to the Thanks to this parameter, it will be possible to identify your comment and then to upsert on it. That is particularly interesting while committing multiple times in a PR and that you just want to have the last execution report printed. It avoids flooding the PR. ...
- name: Comment PR with execution number
uses: thollander/actions-comment-pull-request@v2
with:
message: |
_(execution **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**)_
comment_tag: execution Note: the input InputsAction inputs
ContributingBuildThe build steps transpiles the $ npm run build |
Content of file referenced with absolute path |
GITHUB_WORKSPACE
contentCloses #176