You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$prComment = "🤖 **Automated API Documentation Update**`n`n📅 **Updated:** $timestamp`n🔢 **Workflow Run:** #${{ github.run_number }}`n🚀 **Trigger:** ${{ github.event_name }}`n`nThe API documentation has been regenerated from the latest repository builds and pushed to this branch."
796
+
$prComment = @"
797
+
🤖 **Automated API Documentation Update**
798
+
799
+
📅 **Updated:** $timestamp
800
+
🔢 **Workflow Run:** #${{ github.run_number }}
801
+
🚀 **Trigger:** ${{ github.event_name }}
802
+
803
+
The API documentation has been regenerated from the latest repository builds and pushed to this branch.
804
+
"@
790
805
gh pr comment $existingPr --body $prComment
791
806
Write-Host "✅ Comment added to existing PR #$existingPr"
792
807
} else {
793
808
Write-Host "📝 Creating new pull request..."
794
809
$prTitle = "🤖 API Documentation Updates - $timestamp"
795
-
$prBody = "## 🤖 Automated API Documentation Updates`n`nThis pull request contains automatically generated API documentation updates.`n`n### 📋 Details`n- **Generated:** $timestamp`n- **Workflow Run:** #${{ github.run_number }}`n- **Triggered by:** ${{ github.event_name }}`n- **Branch:** $branch_name`n`n### 🔄 What's Updated`n- API documentation regenerated from latest repository builds`n- Documentation processed with dependency-aware sequential building`n- All repositories with .sln files were built and processed`n`n### ✅ Ready for Review`nThis PR is ready for review and can be merged when approved."
810
+
$prBody = @"
811
+
## 🤖 Automated API Documentation Updates
812
+
813
+
This pull request contains automatically generated API documentation updates.
814
+
815
+
### 📋 Details
816
+
- **Generated:** $timestamp
817
+
- **Workflow Run:** #${{ github.run_number }}
818
+
- **Triggered by:** ${{ github.event_name }}
819
+
- **Branch:** ``$branch_name``
820
+
821
+
### 🔄 What's Updated
822
+
- API documentation regenerated from latest repository builds
823
+
- Documentation processed in parallel for improved performance
824
+
- All repositories with .sln files were built and processed
825
+
826
+
### ✅ Ready for Review
827
+
This PR is ready for review and can be merged when approved.
0 commit comments