Skip to content

Releases: hasura/comment-progress

v2.3.0

21 Jul 15:12
Compare
Choose a tag to compare

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

20 Jul 11:53
1d904b4
Compare
Choose a tag to compare

Logs comment URLs

v2.1.0

29 Jun 13:37
da5a2d7
Compare
Choose a tag to compare

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/comment-progress@v2.1.0
        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

02 Mar 15:17
0c4393d
Compare
Choose a tag to compare

All goodies included for publishing to GitHub Marketplace 🚀

  • Updated README
  • Normal mode with simplified tests
  • Append mode
  • Recreate mode
  • Fail after commenting

v2-beta

02 Mar 07:08
Compare
Choose a tag to compare
v2-beta Pre-release
Pre-release

Introduces recreate mode and improved testing suite for various modes.

v1

01 Mar 06:29
Compare
Choose a tag to compare
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