-
Notifications
You must be signed in to change notification settings - Fork 16
feat(agents): add pull request creation skill #1079
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,310 @@ | ||
| --- | ||
| name: contributor-create-pr | ||
| description: Create, publish, or advance a GitHub pull request for NVIDIA-NeMo/nemo-platform with repository-aware branch checks, targeted validation, DCO sign-off enforcement, trusted PR-template completion, conventional titles, safe pushes, draft or ready-for-review creation, CI and CodeRabbit follow-up, and merge-conflict handling. Use when the user asks to commit and push work, create or open a PR, submit changes for review, mark a draft ready, monitor a PR, address automated review or CI feedback, or update a conflicted PR in nemo-platform. | ||
| --- | ||
|
|
||
| <!-- SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. --> | ||
| <!-- SPDX-License-Identifier: Apache-2.0 --> | ||
|
|
||
| # Create a NeMo Platform pull request | ||
|
|
||
| Create and follow up on pull requests for `NVIDIA-NeMo/nemo-platform`. Treat the refreshed default branch as the source of repository policy and use the host-authenticated `gh` session for GitHub operations. | ||
|
|
||
| ## Non-negotiable rules | ||
|
|
||
| - Read the root `AGENTS.md`, any `AGENTS.local.md`, and every nested `AGENTS.md` that governs a changed file before preparing the PR. | ||
| - Never create a PR from the default branch. | ||
| - Never commit or amend without `-s`. This includes normal commits, `--amend`, and `--fixup` commits. | ||
| - Preserve sign-offs during history updates with `git rebase --signoff` or `git merge --signoff`. | ||
| - Audit every commit in the PR range for an appropriate `Signed-off-by:` trailer before every push and immediately before PR creation. | ||
| - Do not forge another contributor's sign-off. Stop when a commit author must provide or correct their own DCO declaration. | ||
| - Never use `git reset --soft origin/main` or reset to any commit that is not an ancestor of `HEAD`. | ||
| - Never use plain `--force`. Use an exact `--force-with-lease` only after the user approves rewriting a published branch. | ||
| - Stop on GitHub authentication, authorization, SSO, remote-access, or push-permission failures. Do not search for tokens, change credentials, switch remote protocols, or try another identity. | ||
| - Do not alter an unrelated branch or PR. Do not create a duplicate PR for a branch that already has one. | ||
|
|
||
| ## 1. Authenticate and establish the trusted base | ||
|
|
||
| Run these checks before a GitHub read or write: | ||
|
|
||
| ```bash | ||
| NMP_REPO=NVIDIA-NeMo/nemo-platform | ||
| gh auth status | ||
| gh repo view "$NMP_REPO" --json nameWithOwner,defaultBranchRef,url | ||
| git remote get-url origin | ||
| ``` | ||
|
|
||
| Require an active host-authenticated account and `nameWithOwner` equal to `NVIDIA-NeMo/nemo-platform`. If `gh` fails only because a sandbox blocks host or network access, retry the same command with narrowly scoped host/network approval. If authentication or authorization still fails outside the sandbox, report the command and error and stop. | ||
|
|
||
| Resolve and refresh the default branch instead of assuming a stale local `main`: | ||
|
|
||
| ```bash | ||
| NMP_BASE_BRANCH="$(gh repo view "$NMP_REPO" --json defaultBranchRef --jq '.defaultBranchRef.name')" | ||
| git fetch --prune origin "$NMP_BASE_BRANCH" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. origin could be a fork, so |
||
| NMP_BASE_REF="origin/$NMP_BASE_BRANCH" | ||
| git show -s --format='%H %cs %s' "$NMP_BASE_REF" | ||
|
Comment on lines
+42
to
+45
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔒 Security & Privacy | 🟠 Major | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -eu
file=".agents/skills/contributor-create-pr/SKILL.md"
printf '%s\n' '--- relevant file ---'
sed -n '1,115p' "$file"
printf '%s\n' '--- repository references ---'
rg -n --fixed-strings 'NMP_REPO' .agents/skills/contributor-create-pr/SKILL.md
rg -n --fixed-strings 'git remote' .agents/skills/contributor-create-pr/SKILL.md
rg -n --fixed-strings 'AGENTS.md' .agents/skills/contributor-create-pr/SKILL.md
printf '%s\n' '--- tracked related files ---'
git ls-files '.agents/skills/contributor-create-pr/*'Repository: NVIDIA-NeMo/nemo-platform Length of output: 9598 🏁 Script executed: #!/bin/bash
set -eu
file=".agents/skills/contributor-create-pr/SKILL.md"
printf '%s\n' '--- relevant file ---'
sed -n '1,115p' "$file"
printf '%s\n' '--- repository references ---'
rg -n --fixed-strings 'NMP_REPO' "$file"
rg -n --fixed-strings 'git remote' "$file"
rg -n --fixed-strings 'AGENTS.md' "$file"
printf '%s\n' '--- tracked related files ---'
git ls-files '.agents/skills/contributor-create-pr/*'Repository: NVIDIA-NeMo/nemo-platform Length of output: 9598 LLM Security (CWE-829): Inclusion of Functionality from Untrusted Control Sphere Reachability: Internal Validate the
🤖 Prompt for AI Agents |
||
| ``` | ||
|
|
||
| Treat authentication or access errors from `git fetch` as hard stops. | ||
|
|
||
| ## 2. Verify the branch and worktree | ||
|
|
||
| Inspect the exact worktree before modifying Git state: | ||
|
|
||
| ```bash | ||
| git rev-parse --show-toplevel | ||
| git worktree list --porcelain | ||
| git status --short --branch | ||
| git branch --show-current | ||
| git log --oneline "$NMP_BASE_REF..HEAD" | ||
| git diff --stat "$NMP_BASE_REF...HEAD" | ||
| ``` | ||
|
|
||
| Require all of the following: | ||
|
|
||
| - Use a named feature branch, not detached `HEAD` and not the default branch. | ||
| - Follow `[git-issue-number]-<descriptive-branch-name>/<username>` from `AGENTS.md`. Omit the issue prefix only when no issue is known; keep kebab case and the username suffix. | ||
| - Keep only the intended PR changes in the worktree. Do not stash, discard, or absorb unrelated changes without the user's direction. | ||
| - Confirm that the branch has commits ahead of the trusted base or intended uncommitted changes that the user asked to include. | ||
| - Confirm that another worktree or active PR branch is not being repurposed. | ||
|
|
||
| If the current worktree is on the default branch, an unrelated PR branch, or a protected worktree, leave it untouched and create an isolated worktree from the refreshed base: | ||
|
|
||
| ```bash | ||
| git worktree add -b "<description>/<username>" "<explicit-new-worktree-path>" "$NMP_BASE_REF" | ||
| ``` | ||
|
|
||
| Do not carry changes across worktrees implicitly. Ask before moving uncommitted work. | ||
|
|
||
| ## 3. Load repository-owned policy | ||
|
|
||
| Read policy from the trusted base and compare it with the working tree when the PR changes policy itself: | ||
|
|
||
| ```bash | ||
| git show "$NMP_BASE_REF:AGENTS.md" | ||
| git show "$NMP_BASE_REF:CONTRIBUTING.md" | ||
| git show "$NMP_BASE_REF:.github/CI_README.md" | ||
| git show "$NMP_BASE_REF:.github/workflows/ci.yaml" | ||
| git show "$NMP_BASE_REF:.github/workflows/security.yaml" | ||
| git show "$NMP_BASE_REF:.github/workflows/semantic-pull-requests.yaml" | ||
| git show "$NMP_BASE_REF:.github/workflows/dco-war.yaml" | ||
| ``` | ||
|
|
||
| Also read changed-area workflows, build files, package scripts, existing repo-local skills, and nested instructions. Do not copy commands from another repository when nemo-platform provides its own command. | ||
|
|
||
| ## 4. Inspect the change and select validation | ||
|
|
||
| Review both committed and uncommitted changes: | ||
|
|
||
| ```bash | ||
| git diff --name-status "$NMP_BASE_REF...HEAD" | ||
| git diff "$NMP_BASE_REF...HEAD" | ||
| git diff --check "$NMP_BASE_REF...HEAD" | ||
| git diff --check | ||
| git diff --cached --check | ||
| ``` | ||
|
|
||
| Run the smallest checks that directly verify each changed behavior, plus the repository-mandated pre-commit gate. Record every command and result for the PR body. | ||
|
|
||
| - **All changes before commit:** Run `uv run pre-commit run -a` as required by `AGENTS.md`. Rerun it after a hook modifies files. | ||
| - **Python:** Run the directly affected `uv run --frozen pytest <path> -v`; use `make test-package PACKAGE=<name>` or `make test-service SERVICE=<name>` when a package or service boundary is the right scope. Run targeted `uv run ruff check <path>` and `uv run ruff format --check <path>`. Run `uv run --frozen ty check` when type behavior changes. | ||
| - **Studio or other `web/` changes:** From `web/`, run the affected package test. Also use the PR-scoped commands that mirror CI when applicable: `pnpm --filter="...[$NMP_BASE_REF]" run --parallel --if-present typecheck` and `pnpm --filter="...[$NMP_BASE_REF]" run --parallel --if-present test:ci`. Run `pnpm lint` and `pnpm format` for broad web changes. | ||
| - **Fern docs:** Follow `docs/AGENTS.md`. Run `make docs-check` and `make docs-broken-links`; run `make docs-check-python-snippets DOCS_PATH=<path>` or `make docs-run-notebook DOCS_PATH=<path>` when those surfaces change. | ||
| - **API, schema, generated SDK, CLI, or config-reference changes:** Follow the regeneration rules in `AGENTS.md`, the applicable nested instructions, and the exact Make targets. Verify generated output is committed and stable after rerunning the generator. | ||
| - **OPA, Helm, Docker, or workflow changes:** Use the relevant checks such as `make check-policy`, `tools/lint/lint-helm.sh`, Docker bake graph commands, or `actionlint`. Read the workflow before choosing a command. | ||
| - **Broad validation infrastructure changes:** Run `make lint` and the applicable broad test target, such as `make test-unit`, when targeted evidence is insufficient. | ||
|
|
||
| Do not claim a skipped check passed. For a draft, state missing or blocked validation. For a ready PR, fix required failures first unless the user explicitly accepts a documented, non-required limitation. | ||
|
|
||
| ## 5. Stage and commit with mandatory sign-off | ||
|
|
||
| Inspect the staged patch before every commit: | ||
|
|
||
| ```bash | ||
| git add -- <exact-intended-paths> | ||
| git diff --cached --stat | ||
| git diff --cached | ||
| git diff --cached --check | ||
| git commit -s -m "<conventional commit message>" | ||
| ``` | ||
|
|
||
| Local skill installs may also appear under `.agents/skills/nemo-*/`. Stage only explicitly intended repo-owned files by exact path; never use a broad add that can capture unrelated installed skills. | ||
|
|
||
| Use only sign-off-preserving forms: | ||
|
|
||
| ```bash | ||
| git commit --amend -s --no-edit | ||
| git commit -s --fixup=<commit> | ||
| git rebase --signoff <upstream> | ||
| git merge --signoff <upstream> | ||
| ``` | ||
|
|
||
| Never run `git commit`, `git commit --amend`, or a fixup commit without `-s`. If hooks change the patch, restage the intended files, rerun affected validation, and commit with `-s` again. | ||
|
|
||
| ## 6. Audit every PR commit for DCO | ||
|
|
||
| Run this gate after any commit, amend, rebase, cherry-pick, conflict resolution, or automated fix, and before every push or `gh pr create`. It requires a syntactically valid sign-off whose email matches the commit author's email, case-insensitively: | ||
|
|
||
| ```bash | ||
| bash -euo pipefail <<'BASH' | ||
| : "${NMP_BASE_REF:?set NMP_BASE_REF to the refreshed origin default branch}" | ||
| NMP_DCO_FAILED=0 | ||
| NMP_COMMIT_COUNT=0 | ||
|
|
||
| while IFS= read -r NMP_SHA; do | ||
| NMP_COMMIT_COUNT=$((NMP_COMMIT_COUNT + 1)) | ||
| NMP_AUTHOR_EMAIL="$(git show -s --format=%ae "$NMP_SHA")" | ||
| NMP_SIGNOFF_EMAILS="$( | ||
| git show -s --format=%B "$NMP_SHA" \ | ||
| | git interpret-trailers --parse \ | ||
| | awk -F '[<>]' 'tolower($1) ~ /^signed-off-by:[[:space:]]/ && NF >= 3 { print $2 }' | ||
| )" | ||
|
|
||
| if ! printf '%s\n' "$NMP_SIGNOFF_EMAILS" \ | ||
| | awk -v want="$NMP_AUTHOR_EMAIL" 'tolower($0) == tolower(want) { found=1 } END { exit(found ? 0 : 1) }'; then | ||
| printf 'DCO FAIL %s: no Signed-off-by trailer matches author email %s\n' "$NMP_SHA" "$NMP_AUTHOR_EMAIL" >&2 | ||
| NMP_DCO_FAILED=1 | ||
| else | ||
| printf 'DCO OK %s\n' "$NMP_SHA" | ||
| fi | ||
| done < <(git rev-list --reverse "$NMP_BASE_REF..HEAD") | ||
|
|
||
| test "$NMP_COMMIT_COUNT" -gt 0 | ||
| test "$NMP_DCO_FAILED" -eq 0 | ||
| BASH | ||
| ``` | ||
|
|
||
| Do not treat a PR-body declaration or GitHub's cryptographic `Verified` badge as a substitute for commit trailers. Nemo-platform's required gate is DCO sign-off. | ||
|
|
||
| If the audit fails: | ||
|
|
||
| - Amend the last unpushed, self-authored commit with `git commit --amend -s --no-edit`. | ||
| - Repair multiple unpushed, self-authored commits with `git rebase --signoff --force-rebase "$NMP_BASE_REF"`; `--force-rebase` is required when Git would otherwise report an already-current branch and skip replaying the unsigned commits. | ||
| - Stop before rewriting a published branch and request explicit approval. | ||
| - Stop rather than adding a sign-off for a commit authored by someone else. | ||
| - Rerun the entire audit after repair. | ||
|
|
||
| ## 7. Validate the title and complete the trusted template | ||
|
|
||
| Use a title no longer than 100 characters in this form: | ||
|
|
||
| ```text | ||
| <type>[optional scope][!]: <description> | ||
| ``` | ||
|
|
||
| Use one of the conventional types accepted by the pinned title action: `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `build`, `ci`, `chore`, or `revert`. Use an accurate optional scope and `!` only for a breaking change. | ||
|
|
||
| Locate the PR template in the trusted base, not in the feature branch and not in a recent PR body: | ||
|
|
||
| ```bash | ||
| git ls-tree -r --name-only "$NMP_BASE_REF" \ | ||
| | rg -i '(^|/)(pull_request_template)(\.md|/.*\.md)$' | ||
| ``` | ||
|
|
||
| - If exactly one template applies, copy it with `git show "$NMP_BASE_REF:<template-path>"` into a file created by `mktemp /tmp/nemo-platform-pr-body.XXXXXX`. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🔴 Critical | ⚡ Quick win Set The instructions do not assign the temporary file path or redirect Also applies to: 249-253 🤖 Prompt for AI Agents |
||
| - If multiple templates exist, select the repository-defined template that matches the change. Ask when selection is ambiguous. | ||
| - If no template exists on the trusted base, report the missing repository dependency and stop before `gh pr create`. Do not invent a template or silently reuse a branch-modified or historical body. | ||
| - If the PR changes the template, still populate the trusted base version and explain the template change in that body. | ||
|
Comment on lines
+197
to
+207
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | 🏗️ Heavy lift 🧩 Analysis chain🏁 Script executed: cat -n ".agents/skills/contributor-create-pr/SKILL.md" | sed -n '190,220p'Repository: NVIDIA-NeMo/nemo-platform Length of output: 2196 🏁 Script executed: # Check the full structure of the file to understand if this is documentation or implementation
wc -l ".agents/skills/contributor-create-pr/SKILL.md"
# Look for implementation code around this section
sed -n '1,50p' ".agents/skills/contributor-create-pr/SKILL.md"Repository: NVIDIA-NeMo/nemo-platform Length of output: 3427 🏁 Script executed: # Check if this PR adds .github/PULL_REQUEST_TEMPLATE.md
git diff --name-only origin/main HEAD | grep -i "pull_request_template"
# Also check what files are in .github on both branches
echo "=== Files in .github on base ==="
git ls-tree -r --name-only "origin/main" -- ".github/" | head -20
echo "=== Files in .github on this branch ==="
git ls-tree -r --name-only "HEAD" -- ".github/" | head -20Repository: NVIDIA-NeMo/nemo-platform Length of output: 2074 🏁 Script executed: # Check if there's implementation code (not just documentation) that handles this
# Look for any bash/script files in the same skill directory
ls -la ".agents/skills/contributor-create-pr/"
# Check for any implementation that might override the documented logic
find ".agents/skills/contributor-create-pr/" -type f \( -name "*.sh" -o -name "*.yml" -o -name "*.yaml" \)Repository: NVIDIA-NeMo/nemo-platform Length of output: 336 🏁 Script executed: # Check if there's any fallback or bootstrap logic earlier in the file
sed -n '1,196p' ".agents/skills/contributor-create-pr/SKILL.md" | grep -A5 -B5 -i "template\|bootstrap\|fallback"Repository: NVIDIA-NeMo/nemo-platform Length of output: 1503 🏁 Script executed: # Look at the full section 7 to understand the template handling logic
sed -n '175,210p' ".agents/skills/contributor-create-pr/SKILL.md"Repository: NVIDIA-NeMo/nemo-platform Length of output: 2485 🏁 Script executed: # Verify the content of the added PR template file
git show HEAD:.github/PULL_REQUEST_TEMPLATE.md | head -50Repository: NVIDIA-NeMo/nemo-platform Length of output: 1775 Define bootstrap PR body for first-template installation. Line 206 stops workflow if no template exists on the trusted base. Line 207 applies only when the base already has a template. This PR adds Add a controlled bootstrap body for PRs that install the first template. Detect when no template exists on the base but the PR adds one, then use the bootstrap body instead of stopping. 🤖 Prompt for AI Agents |
||
|
|
||
| Preserve the template's section order, comments, and checkbox semantics. Complete every applicable section from `git diff "$NMP_BASE_REF...HEAD"`. Check only items backed by command, hook, or CI evidence. Use `Fixes #NNN` or `Closes #NNN` only for a real related issue. Do not add a PR-body sign-off unless the trusted template requests it; the commit-level DCO audit remains mandatory. | ||
|
|
||
| ## 8. Push safely | ||
|
|
||
| Immediately before pushing, rerun the DCO audit, confirm the branch and remote, and inspect the outgoing commits: | ||
|
|
||
| ```bash | ||
| NMP_BRANCH="$(git branch --show-current)" | ||
| git remote get-url origin | ||
| git log --oneline "$NMP_BASE_REF..HEAD" | ||
| git push --set-upstream origin "HEAD:refs/heads/$NMP_BRANCH" | ||
| ``` | ||
|
|
||
| Use a normal push first. On a non-fast-forward rejection, fetch the exact remote branch and inspect both histories. Stop if the remote contains unexpected work. | ||
|
|
||
| Only after the user approves rewriting a published branch, pin the lease to the fetched remote SHA: | ||
|
|
||
| ```bash | ||
| git fetch origin "$NMP_BRANCH" | ||
| NMP_EXPECTED_REMOTE_SHA="$(git rev-parse "origin/$NMP_BRANCH")" | ||
| git push \ | ||
| --force-with-lease="refs/heads/$NMP_BRANCH:$NMP_EXPECTED_REMOTE_SHA" \ | ||
| origin "HEAD:refs/heads/$NMP_BRANCH" | ||
| ``` | ||
|
|
||
| Never bypass branch protection or required checks. Stop on any access error. | ||
|
|
||
| ## 9. Create a draft or ready PR | ||
|
|
||
| Check for an existing open PR first: | ||
|
|
||
| ```bash | ||
| gh pr list --repo "$NMP_REPO" --head "$NMP_BRANCH" --state open --json number,title,url,isDraft | ||
| ``` | ||
|
|
||
| Rerun the DCO audit immediately before creation. Use explicit metadata; do not use `--fill` because it bypasses trusted-template completion. | ||
|
|
||
| Create a draft when work, validation, or a required decision remains: | ||
|
|
||
| ```bash | ||
| gh pr create --repo "$NMP_REPO" \ | ||
| --base "$NMP_BASE_BRANCH" \ | ||
| --head "$NMP_BRANCH" \ | ||
| --title "<validated title>" \ | ||
| --body-file "$NMP_PR_BODY" \ | ||
| --draft | ||
| ``` | ||
|
|
||
| Create a ready PR by omitting `--draft` only when the change and required local validation are ready for review. Do not add reviewers, labels, projects, milestones, or assignees unless the user explicitly requests them or trusted base-branch policy requires them. Let `CODEOWNERS` and repository automation route reviews. | ||
|
|
||
| For an existing draft, use `gh pr ready <number>` only after the user asks to make it ready and readiness gates pass. Verify the resulting PR: | ||
|
|
||
| ```bash | ||
| gh pr view <number> --repo "$NMP_REPO" \ | ||
| --json number,title,url,isDraft,baseRefName,headRefName,headRefOid,mergeable,mergeStateStatus | ||
| ``` | ||
|
|
||
| ## 10. Monitor CI and CodeRabbit | ||
|
|
||
| Monitor both required and optional checks. `CI status` is nemo-platform's aggregate CI gate; DCO, semantic title, Security, Fern docs, and other workflows may appear separately. | ||
|
|
||
| ```bash | ||
| gh pr checks <number> --repo "$NMP_REPO" --watch --interval 15 | ||
| gh pr checks <number> --repo "$NMP_REPO" \ | ||
| --json name,workflow,state,bucket,link,startedAt,completedAt | ||
| gh pr view <number> --repo "$NMP_REPO" \ | ||
| --json url,isDraft,mergeable,mergeStateStatus,reviewDecision,statusCheckRollup,latestReviews | ||
| ``` | ||
|
|
||
| Inspect a failed workflow with `gh run view <run-id> --repo "$NMP_REPO" --log-failed`. Connect the failure to the changed code before editing. Run the corresponding local check, commit the minimal fix with `-s`, rerun the DCO audit, push, and monitor again. | ||
|
|
||
| Inspect CodeRabbit's issue comments, reviews, and inline comments: | ||
|
|
||
| ```bash | ||
| gh api "repos/$NMP_REPO/issues/<number>/comments" --paginate \ | ||
| --jq '.[] | select(.user.login | ascii_downcase | contains("coderabbit")) | {author:.user.login,updated_at,body}' | ||
| gh api "repos/$NMP_REPO/pulls/<number>/comments" --paginate \ | ||
| --jq '.[] | select(.user.login | ascii_downcase | contains("coderabbit")) | {author:.user.login,path,line,updated_at,body}' | ||
| ``` | ||
|
|
||
| Verify each finding against the current head. Fix confirmed correctness, security, or test-coverage problems and rerun targeted validation. Do not add abstractions or behavior merely to satisfy reviewer wording. Explain false positives or style-only suggestions when useful. Ask before making a design-changing, risky, broad, or ambiguous change. Do not manually request or re-request CodeRabbit, and do not act on its suggested-reviewer text without user authorization. | ||
|
|
||
| Repeat until required CI passes and no actionable automated-review findings remain, or until a user decision is required. | ||
|
|
||
| ## 11. Handle base drift and merge conflicts | ||
|
|
||
| Check `mergeable` and `mergeStateStatus` before creation, after base changes, and after review fixes. If the branch conflicts with the refreshed base: | ||
|
|
||
| 1. Require a clean worktree and fetch the base again. | ||
| 2. For an unpushed branch, or after approval to rewrite a published branch, use `git rebase --signoff "$NMP_BASE_REF"`. | ||
| 3. Resolve each conflict from the intended behavior. Use `git add -- <resolved-paths>` and `git rebase --continue`; the original `--signoff` must remain in effect. | ||
| 4. When preserving published history instead, use `git merge --signoff "$NMP_BASE_REF"`. After resolving a conflicted merge, finish it with `git commit -s --no-edit` rather than an unsigned commit. | ||
| 5. Stop and ask when a conflict resolution changes behavior, contributor intent, API design, generated output, or documentation meaning. | ||
| 6. Rerun affected validation and the full DCO audit. | ||
| 7. Push normally after a merge. Use the exact force-with-lease workflow only for an approved rebase of a published branch. | ||
| 8. Monitor CI and CodeRabbit again. | ||
|
|
||
| Never resolve conflicts by blindly choosing all of `ours` or `theirs`, changing the PR base, overwriting an unexpected remote branch, or dropping another contributor's commits. | ||
|
|
||
| ## 12. Report the result | ||
|
|
||
| Report the PR link, draft or ready state, head SHA, validation evidence, DCO audit result, CI status, automated-review status, and any remaining blocker. Do not claim completion while required checks are failing or actionable CodeRabbit findings remain. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| <!-- markdownlint-disable MD041 --> | ||
| ## Summary | ||
| <!-- In 1-3 plain sentences, explain what changes and why. Describe before-and-after behavior when it applies. --> | ||
|
|
||
| ## Related Issue | ||
| <!-- Use Fixes #NNN or Closes #NNN for a related issue. Remove this section if there is none. --> | ||
|
|
||
| ## Changes | ||
| <!-- List the concrete changes included in this pull request. --> | ||
|
|
||
| ## Type of Change | ||
|
|
||
| - [ ] Code change (feature, bug fix, or refactor) | ||
| - [ ] Code change with documentation updates | ||
| - [ ] Documentation only | ||
| - [ ] Contributor tooling or automation | ||
| - [ ] CI, build, or test infrastructure | ||
|
|
||
| ## Quality Gates | ||
| <!-- Check one tests line and one documentation line. Include the requested justification when a gate is not applicable. --> | ||
|
|
||
| - [ ] Tests added or updated for changed behavior | ||
| - [ ] Existing tests cover changed behavior — justification: | ||
| - [ ] Tests not applicable — justification: | ||
| - [ ] Documentation updated for user-visible behavior | ||
| - [ ] Documentation not applicable — justification: | ||
|
|
||
| ## Verification | ||
| <!-- Check an item only when supported by evidence. List exact targeted validation commands and results below. --> | ||
|
|
||
| - [ ] Pull request title follows the repository's Conventional Commit format | ||
| - [ ] Every commit includes an appropriate `Signed-off-by:` trailer | ||
| - [ ] `uv run pre-commit run -a` passes, or any blocked checks are identified below | ||
| - [ ] Targeted tests pass, or tests are marked not applicable above | ||
| - [ ] No secrets, API keys, or credentials are included | ||
|
|
||
| Targeted validation: | ||
|
|
||
| <!-- List each command and result. Explain skipped, blocked, or non-successful checks without marking them as passed. --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: NVIDIA-NeMo/nemo-platform
Length of output: 5537
Sensitive Data Exposure (CWE-319): Cleartext Transmission of Sensitive Information
Reachability: Internal
Reject plaintext Git transport.
Validate every fetch and push URL before use. Reject
http://andgit://URLs, and allow only authenticated encrypted schemes such as HTTPS or SSH. Apply this check at lines 31-35, 42-45, and 213-219.🤖 Prompt for AI Agents
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
git remote get-url --all origin git remote get-url --push --all origin gh repo view "$NMP_REPO" --json nameWithOwner --jq .nameWithOwnerRepository: NVIDIA-NeMo/nemo-platform
Length of output: 287
🏁 Script executed:
Repository: NVIDIA-NeMo/nemo-platform
Length of output: 9552
🏁 Script executed:
Repository: NVIDIA-NeMo/nemo-platform
Length of output: 327
Security Misconfiguration (CWE-16)
Reachability: Internal · Exploitability: Difficult
Validate the Git remote before fetching or pushing.
gh repo view "$NMP_REPO"validates the GitHub target, butgit fetch originandgit push originuse the localoriginconfiguration. Compare every fetch and push URL with$NMP_REPO; displaying the URL does not validate it.🤖 Prompt for AI Agents