[PLAY-3185] Add Kit Category SVGs for Container and Full Screen #1146
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Agentic PR Review | |
| # Manual triggers only: | |
| # - `agentic-review` label on a same-repo PR (requires triage/write to apply labels) | |
| # - PR comment containing @nitro-pr-review from a powerhome org member | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number || github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| agentic-review: | |
| name: PR Review | |
| if: | | |
| ( | |
| github.event_name == 'pull_request' && | |
| github.event.action == 'labeled' && | |
| github.event.label.name == 'agentic-review' && | |
| github.event.pull_request.head.repo.full_name == github.repository | |
| ) || | |
| ( | |
| github.event_name == 'issue_comment' && | |
| github.event.issue.pull_request && | |
| contains(github.event.comment.body, '@nitro-pr-review') && | |
| contains(fromJSON('["OWNER","MEMBER"]'), github.event.comment.author_association) | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check eligibility | |
| id: eligibility | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| PR_NUMBER: ${{ github.event.pull_request.number || github.event.issue.number }} | |
| run: | | |
| set -euo pipefail | |
| if [[ "${PR_NUMBER}" == "" ]]; then | |
| echo "skip=true" >> "${GITHUB_OUTPUT}" | |
| echo "Skipping agentic review because no pull request number is available" | |
| exit 0 | |
| fi | |
| gh api \ | |
| -H "Accept: application/vnd.github+json" \ | |
| "repos/${GITHUB_REPOSITORY}/pulls/${PR_NUMBER}" \ | |
| > pr.json | |
| pr_state="$(jq -r '.state' pr.json)" | |
| if [[ "${pr_state}" != "open" ]]; then | |
| echo "skip=true" >> "${GITHUB_OUTPUT}" | |
| echo "Skipping agentic review because the PR is not open" | |
| exit 0 | |
| fi | |
| head_repo="$(jq -r '.head.repo.full_name' pr.json)" | |
| if [[ "${head_repo}" != "${GITHUB_REPOSITORY}" ]]; then | |
| echo "skip=true" >> "${GITHUB_OUTPUT}" | |
| echo "Skipping agentic review because the PR comes from a fork" | |
| exit 0 | |
| fi | |
| - name: Run agentic PR review | |
| timeout-minutes: 15 | |
| if: steps.eligibility.outputs.skip != 'true' | |
| uses: powerhome/github-actions-workflows/agentic-pr-review@3f92012ed22b3c6f4cf2a1272d170fc01a5b75f4 # main | |
| with: | |
| app-id: ${{ secrets.AGENTIC_REVIEW_GITHUB_APP_ID }} | |
| private-key: ${{ secrets.AGENTIC_REVIEW_GITHUB_APP_PRIVATE_KEY }} | |
| provider: cursor | |
| provider-api-key: ${{ secrets.AGENTIC_REVIEW_PROVIDER_API_KEY }} | |
| pull-request-number: ${{ github.event.pull_request.number || github.event.issue.number }} | |
| # Pass the full comment through so org members can steer a manual rerun. | |
| additional-prompt: ${{ github.event_name == 'issue_comment' && github.event.comment.body || '' }} |