Skip to Content
Quick Start

Quick Start

Get Dev Herald running in your CI pipeline in minutes.

Sign up to Dev Herald

Create an account at dev-herald.com  and connect your GitHub account.

Create a Project and API Key

  1. Create a new project for your GitHub repository
  2. Generate an API key for the project
  3. Add the API key to your GitHub repository secrets as DEV_HERALD_API_KEY

Create a Workflow

Add a workflow file at .github/workflows/pr-comments.yml:

name: Dev Herald PR Comments on: pull_request: types: [opened, synchronize] jobs: comment: runs-on: ubuntu-latest steps: - name: Post PR Comment uses: dev-herald/comment@v1 with: api-key: ${{ secrets.DEV_HERALD_API_KEY }} pr-number: ${{ github.event.pull_request.number }} comment: | 👋 Hey there! This PR is looking great! 🎉 Thanks for your contribution! 🚀

Push this to your repository, open a PR, and watch Dev Herald comment automatically.

Simple Comment Example

Next Steps

  • Explore Templates for structured comments (test results, deployments, etc.)
  • Learn about Sticky Comments to update comments in place
  • Use Markdown for custom formatting
Last updated on