GitHub Action in CI

Enforce automated change verification and static policy checks on every pull request created by human engineers and autonomous coding bots.

Workflow Example

.github/workflows/verify-pr.yml
name: Verify Pull Request
on:
  pull_request:
    branches: [main]

jobs:
  verify:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - name: Setup Go
        uses: actions/setup-go@v5
        with:
          go-version: '1.27'

      - name: Run agentic-go Verification
        uses: agentic-mcps/verify-action@v1
        with:
          base-ref: origin/main
          report-format: markdown
          comment-on-pr: true