Skip to content

Commit 177dcf8

Browse files
fredbiclaude
andauthored
ci: schedule bot PR monitoring (#257)
Calls the shared monitor-bot-pr workflow from go-openapi/ci-workflows once a day. The workflow detects bot PRs (dependabot or organization bot) that have auto-merge enabled but have stalled because the branch fell behind master, and unblocks them by asking for a rebase (a "@dependabot rebase" comment, or "gh pr update-branch --rebase" for organization bot PRs). Signed-off-by: Frédéric BIDON <fredbi@yahoo.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 2c6cc30 commit 177dcf8

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Monitor bot PRs
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '18 6 * * *'
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
monitor-pr:
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
uses: go-openapi/ci-workflows/.github/workflows/monitor-bot-pr.yml@ff87261e2ba4b6a01b2b03bf2738b078e064c8c5 # v0.3.0
17+
secrets: inherit

0 commit comments

Comments
 (0)