OSAC-3322: initialize fullsend per-repo installation - #189
Conversation
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: eranco74 The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
WalkthroughThe PR adds Fullsend repository configuration and a GitHub Actions workflow. The workflow dispatches supported events to a reusable workflow and handles authorized ChangesFullsend integration
Estimated code review effort: 3 (Moderate) | ~25 minutes Sequence Diagram(s)sequenceDiagram
participant GitHub
participant FullsendWorkflow
participant ReusableDispatchWorkflow
GitHub->>FullsendWorkflow: supported event
FullsendWorkflow->>FullsendWorkflow: filter unsupported comments
FullsendWorkflow->>ReusableDispatchWorkflow: forward event, inputs, and secrets
sequenceDiagram
participant GitHub
participant StopFixJob
participant RepositoryPermissions
participant PullRequest
GitHub->>StopFixJob: `/fs-fix-stop` comment
StopFixJob->>RepositoryPermissions: check repository permission
StopFixJob->>PullRequest: verify author or apply label
StopFixJob->>GitHub: post confirmation comment
Caution Pre-merge checks failedPlease resolve all errors before merging. Addressing warnings is optional.
❌ Failed checks (1 error)
✅ Passed checks (10 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/fullsend.yaml:
- Line 47: Pin the privileged Fullsend reusable workflow in
.github/workflows/fullsend.yaml at the workflow reference on line 47 to the
approved 40-character commit SHA instead of `@v0`. In .fullsend/config.yaml lines
9-11, update every fetched resource URL to use a commit-SHA reference with a
`#sha256`=... integrity fragment; keep allowed_remote_resources as allowlist
prefixes rather than treating them as pins.
🪄 Autofix
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository: osac-project/coderabbit/.coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: 7f5e54ff-139e-42c9-971e-81a8bf62f397
📒 Files selected for processing (12)
.fullsend/config.yaml.fullsend/customized/agents/.gitkeep.fullsend/customized/env/.gitkeep.fullsend/customized/harness/.gitkeep.fullsend/customized/plugins/.gitkeep.fullsend/customized/policies/.gitkeep.fullsend/customized/profiles/.gitkeep.fullsend/customized/providers/.gitkeep.fullsend/customized/schemas/.gitkeep.fullsend/customized/scripts/.gitkeep.fullsend/customized/skills/.gitkeep.github/workflows/fullsend.yaml
|
@eranco74: This pull request references OSAC-3322 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the task to target the "5.0.0" version, but no target version was set. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/retest |
|
Re-triggered failed runs:
|
|
/lgtm |
d1bd879 to
98d8e10
Compare
|
/lgtm |
This PR adds the fullsend scaffold files for per-repo installation.
Merge this PR to activate fullsend workflows.
Summary by CodeRabbit
New Features
/fs-fix-stopcommand to stop automated fixes for a pull request.Chores