Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 686 Bytes

README.md

File metadata and controls

37 lines (30 loc) · 686 Bytes

Pear Reviewer

Program to simplify PCI double approval process across repositories

Development

  1. Install nix
  2. Run nix-shell
  3. Run cargo build
  4. Run cargo test
  5. Run cargo deny check

GitHub Action usage

pear-reviewer can be used as a GitHub Actions workflow to comment the review template on PRs.

name: Pear Reviewer
"on":
  pull_request:
    branches:
      - '*'
    paths:
      - 'helm-charts/**'

jobs:
  review:
    name: Review
    runs-on: ubuntu-latest
    steps:
      - name: Check out code
        uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - name: Run Pear Reviewer
        uses: sapcc/pear-reviewer@master