Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mulecode/github-action-comment-manager
Github plugin for commenting PR's
https://github.com/mulecode/github-action-comment-manager
actions github
Last synced: about 1 month ago
JSON representation
Github plugin for commenting PR's
- Host: GitHub
- URL: https://github.com/mulecode/github-action-comment-manager
- Owner: mulecode
- License: gpl-3.0
- Created: 2024-08-26T13:27:45.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T20:33:40.000Z (3 months ago)
- Last Synced: 2024-09-26T09:04:27.508Z (about 2 months ago)
- Topics: actions, github
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Comment Manager
GitHub plugin for commenting PR's
## How to use it
with commentBody:
```yaml
test_commenter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mulecode/github-action-comment-manager@main
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
issueNumber: ${{ github.event.pull_request.number }}
commentTitle: "TEST-1234"
commentBody: |
Hello, I am a comment.
Thank you!
```with commentBody:
```yaml
test_commenter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mulecode/github-action-comment-manager@main
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
issueNumber: ${{ github.event.pull_request.number }}
commentTitle: "TEST-1234"
commentBodyFile: ./file_content.text
```The commentTitle is used to identify the comment,
if the comment already exists, it will be updated, otherwise it will be created.