Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 1.95 KB

File metadata and controls

68 lines (46 loc) · 1.95 KB

Pull Request Link Instructions

Step 1: Push to Your Fork First

Before you can create a pull request link, you need to push the branch to your personal fork:

# Add your fork as remote (replace YOUR_USERNAME)
git remote add fork https://github.com/YOUR_USERNAME/stellarlend-contracts.git

# Push the current branch to your fork
git push fork feature/governance-audit-log-pr

Step 2: Create Pull Request Link

Once pushed to your fork, the pull request link will be:

GitHub Pull Request URL:

https://github.com/StellarLend/stellarlend-contracts/compare/main...YOUR_USERNAME:stellarlend-contracts:feature/governance-audit-log-pr

Replace YOUR_USERNAME with your actual GitHub username.

Step 3: Alternative - GitHub UI

  1. Go to your fork: https://github.com/YOUR_USERNAME/stellarlend-contracts
  2. You should see a banner suggesting to create a pull request
  3. Click "Compare & pull request"
  4. This will take you to the PR creation page

Step 4: PR Details

Title:

feat: add governance audit log events and views for admin actions

Description: Use the content from GOVERNANCE_AUDIT_PR_DESCRIPTION.md

Reference: Closes #657

Example with Your Username

If your GitHub username is Kenlachy, the PR link would be:

https://github.com/StellarLend/stellarlend-contracts/compare/main...Kenlachy:stellarlend-contracts:feature/governance-audit-log-pr

Current Status

  • ✅ Branch: feature/governance-audit-log-pr is ready
  • ✅ All changes committed: f49e2fb
  • ✅ PR description prepared
  • ❌ Not yet pushed to fork (permission denied to main repo)

Quick Commands

# Replace YOUR_USERNAME with your actual GitHub username
git remote add fork https://github.com/YOUR_USERNAME/stellarlend-contracts.git
git push fork feature/governance-audit-log-pr

# Then visit the PR link above to create the pull request

The governance audit log implementation is ready for PR creation once you push to your fork!