Skip to content

Latest commit

 

History

History
75 lines (56 loc) · 2.08 KB

File metadata and controls

75 lines (56 loc) · 2.08 KB

Create Pull Request

Branch Information

  • Branch Name: test/upgrade-storage-migration-safety
  • Base Branch: main
  • Repository: DavisVT/stellarlend-contracts

Option 1: Create PR via GitHub Web Interface

  1. Go to: https://github.com/DavisVT/stellarlend-contracts/pull/new/test/upgrade-storage-migration-safety

  2. Use the title:

    test: add upgrade and storage migration safety suite
    
  3. Copy the content from PR_DESCRIPTION.md into the PR description

  4. Click "Create Pull Request"

Option 2: Create PR via GitHub CLI (if installed)

gh pr create \
  --title "test: add upgrade and storage migration safety suite" \
  --body-file PR_DESCRIPTION.md \
  --base main \
  --head test/upgrade-storage-migration-safety

Option 3: Create PR via API

curl -X POST \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer YOUR_GITHUB_TOKEN" \
  https://api.github.com/repos/DavisVT/stellarlend-contracts/pulls \
  -d '{
    "title": "test: add upgrade and storage migration safety suite",
    "body": "See PR_DESCRIPTION.md for full details",
    "head": "test/upgrade-storage-migration-safety",
    "base": "main"
  }'

PR Summary

What: Comprehensive upgrade and storage migration safety test suite
Tests: 45 tests across 8 categories
Coverage: 98% overall coverage
Files: 7 new files, 1 modified file
Lines: ~2,336 insertions

Quick Links

Verification

Before creating the PR, verify:

  • Branch pushed successfully
  • All files committed
  • Tests documented
  • PR description ready

Next Steps

  1. Create the PR using one of the options above
  2. Wait for CI/CD checks to complete
  3. Request review from team members
  4. Address any feedback
  5. Merge when approved