@@ -150,8 +150,8 @@ jobs:
150
150
git config --global user.name "github-actions[bot]"
151
151
git config --global user.email "github-actions[bot]@users.noreply.github.com"
152
152
153
- # Rebase check job
154
- rebase- check :
153
+ # Check job (handles both rebase requests and auto-closing PRs)
154
+ check :
155
155
runs-on : ubuntu-latest
156
156
needs : [determine-jobs, setup]
157
157
if : ${{ needs.determine-jobs.outputs.run_check == 'true' }}
@@ -189,9 +189,9 @@ jobs:
189
189
echo "✅ Using BUDDY_BOT_TOKEN (full permissions)"
190
190
fi
191
191
192
- - name : Check for rebase requests
192
+ - name : Check for PRs that need attention
193
193
run : |
194
- echo "🔍 Checking for PRs with rebase checkbox enabled ..."
194
+ echo "🔍 Checking for PRs that need attention ( rebase requests or auto-closing) ..."
195
195
echo "🔧 Environment info:"
196
196
echo "Current directory: $(pwd)"
197
197
echo "GITHUB_TOKEN set: $([[ -n "$GITHUB_TOKEN" ]] && echo "Yes" || echo "No")"
@@ -214,10 +214,10 @@ jobs:
214
214
GITHUB_TOKEN : ${{ secrets.BUDDY_BOT_TOKEN || secrets.GITHUB_TOKEN }}
215
215
BUDDY_BOT_TOKEN : ${{ secrets.BUDDY_BOT_TOKEN }}
216
216
217
- - name : Create rebase check summary
217
+ - name : Create check summary
218
218
if : always()
219
219
run : |
220
- echo "## 🔄 Rebase Check Summary" >> $GITHUB_STEP_SUMMARY
220
+ echo "## 🔍 Check Summary" >> $GITHUB_STEP_SUMMARY
221
221
echo "" >> $GITHUB_STEP_SUMMARY
222
222
echo "- **Triggered by**: ${{ github.event_name }}" >> $GITHUB_STEP_SUMMARY
223
223
echo "- **Dry run**: ${{ github.event.inputs.dry_run || 'false' }}" >> $GITHUB_STEP_SUMMARY
@@ -231,7 +231,7 @@ jobs:
231
231
fi
232
232
233
233
echo "" >> $GITHUB_STEP_SUMMARY
234
- echo "📋 View detailed logs above for rebase results." >> $GITHUB_STEP_SUMMARY
234
+ echo "📋 View detailed logs above for check results (rebase requests and auto-closing) ." >> $GITHUB_STEP_SUMMARY
235
235
236
236
# Dependency update job
237
237
dependency-update :
0 commit comments