Skip to content

Conversation

@nv-apoddubny
Copy link
Collaborator

Description

Removes unused pipelines for cleaner code

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Greptile Overview

Greptile Summary

Removes two unused GitHub Actions workflows: cherry-pick.yml and mirror-repository.yml.

Key Changes:

  • Deleted cherry-pick.yml - automated cherry-picking from main to devel branch (devel branch no longer exists in repository)
  • Deleted mirror-repository.yml - automated mirroring from main to a target repository (no longer needed)

Impact:

  • No references to these workflows found in the codebase
  • Both workflows trigger on push to main but serve purposes no longer required
  • Remaining workflows (build.yml, daily-compatibility.yml, labeler.yml, postmerge-ci.yml, check-links.yml) continue to function normally

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • Only deletes workflow files with no dependencies. The devel branch referenced in cherry-pick.yml doesn't exist, and no code references either workflow. This is straightforward cleanup.
  • No files require special attention

Important Files Changed

File Analysis

Filename Score Overview
.github/workflows/cherry-pick.yml 5/5 Removed cherry-pick workflow that synced main to devel branch - safe to delete as devel branch no longer exists
.github/workflows/mirror-repository.yml 5/5 Removed mirror workflow that synchronized main branch to target repository - safe cleanup of unused automation

Sequence Diagram

sequenceDiagram
    participant Dev as Developer
    participant GH as GitHub Actions
    participant Main as main branch
    participant Devel as devel branch (removed)
    participant Target as Target Repo (removed)

    Note over Dev,Target: Before this PR
    Dev->>Main: Push commit
    Main->>GH: Trigger cherry-pick.yml
    GH->>Devel: Cherry-pick commit to devel
    Main->>GH: Trigger mirror-repository.yml
    GH->>Target: Mirror main to target repo

    Note over Dev,Target: After this PR
    Dev->>Main: Push commit
    Note over GH,Target: No workflows triggered
    Note over Main: Clean workflow setup
Loading

2 files reviewed, no comments

Edit Code Review Agent Settings | Greptile

@kellyguo11 kellyguo11 merged commit 31307ce into isaac-sim:main Nov 13, 2025
8 of 12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants