Skip to content

Commit

Permalink
Merge pull request #290 from step-security/ak-code-reviewer-main
Browse files Browse the repository at this point in the history
adding a workflow for reviewing code changes using stepsecurity code reviewer
  • Loading branch information
ashishkurmi committed May 1, 2023
2 parents 5d5d342 + 50ba86c commit 6dacdfc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/code-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Code Review
on:
pull_request:
branches:
- main
- int
permissions:
contents: read

jobs:
code-review:
name: Code Review
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@6b3083af2869dc3314a0257a42f4af696cc79ba3 # v2.3.1
with:
egress-policy: audit

- name: Code Review
uses: docker://ghcr.io/step-security/code-reviewer/int:latest
env:
PAT: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6dacdfc

Please sign in to comment.