Releases: hasura/comment-progress
Releases · hasura/comment-progress
v2.3.0
Adds support for delete
mode. This is helpful for deleting stale comments that you wish to get rid of at some point.
Please refer here for more details.
v2.2.0
Logs comment URLs
v2.1.0
Supports commit comments by introducing a field called commit-sha
Example usage:
on:
push:
branches:
- main
jobs:
commit-comment:
runs-on: ubuntu-20.04
name: Comment on commit with some info
steps:
- name: Comment on commit
uses: hasura/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
repository: 'my-org/my-repo'
commit-sha: ${{ github.sha }}
id: commit-comment
message: 'This is a commit comment :D.'
v2
All goodies included for publishing to GitHub Marketplace 🚀
- Updated README
- Normal mode with simplified tests
- Append mode
- Recreate mode
- Fail after commenting
v2-beta
Introduces recreate mode and improved testing suite for various modes.
v1
Basic version of the action with following features:
- create or update comment in GitHub issues based on id matching
- append flag for appening message to matching comment
- fail flag for failing the job after commenting