Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smillerdev/reviewboard-action
Post reviews to a ReviewBoard instance
https://github.com/smillerdev/reviewboard-action
Last synced: 6 days ago
JSON representation
Post reviews to a ReviewBoard instance
- Host: GitHub
- URL: https://github.com/smillerdev/reviewboard-action
- Owner: SMillerDev
- Created: 2022-10-23T11:48:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T14:50:52.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T05:01:22.654Z (about 2 months ago)
- Language: Shell
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Post Review Github Action
Post reviews to a ReviewBoard instance, useful to report CI issues to the review.
Runs on `ubuntu` and `macos`.
## Usage
To add a comment to a review:
```yaml
- name: Post a review
id: post-review
uses: SMillerDev/reviewboard-action@main
with:
token: "SOME_TOKEN"
url: https://reviews.lunr.nl
action: comment
header: 'Some header'
footer: 'And a footer'
```To publish a review:
```yaml
- name: Post a review
id: post-review
uses: SMillerDev/reviewboard-action@main
with:
token: "SOME_TOKEN"
url: https://reviews.lunr.nl
action: publish
```