Skip to content

Github Action to hide comments made by Github Action

License

Notifications You must be signed in to change notification settings

kanga333/comment-hider

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c12bb20 · Oct 23, 2022

History

88 Commits
Oct 23, 2022
Oct 23, 2022
May 18, 2021
Oct 23, 2022
Oct 23, 2022
Apr 4, 2021
Oct 23, 2022
Apr 4, 2021
Jul 18, 2020
Jul 18, 2020
Apr 4, 2021
Jul 18, 2020
May 21, 2021
Oct 23, 2022
Apr 4, 2021
Oct 23, 2022
Oct 23, 2022
Apr 4, 2021

Repository files navigation

Github Action to hide Bot comments

build-test

Comment-hider action automatically hides bot comments posted to PR.

  • Automatically hide certain users' comments posted to PR. (The default is github-actions[bot].)

Sample Workflows

Posting the results of CI/CD in the PR comments is a common practice. Comment-hider action is useful for hiding outdated posts in these cases.

on:
  pull_request:
steps:
- uses: actions/checkout@v2

- uses: kanga333/comment-hider@master
  name: Hide bot comments
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    # See action.yml for other options you can specify

- id: cicd
  run: |
    echo "Run some kind of CI/CD."

- uses: actions/github-script@0.9.0
  with:
    github-token: ${{ secrets.GITHUB_TOKEN }}
    script: |
      const output = `${{ steps.cicd.outputs.stdout }}`;
      github.issues.createComment({
        issue_number: context.issue.number,
        owner: context.repo.owner,
        repo: context.repo.repo,
        body: output
      })