Add workflow that fails when Dependabot updates error#61
Closed
claude[bot] wants to merge 3 commits into
Closed
Conversation
This was referenced Jul 22, 2026
This was referenced Jul 22, 2026
Author
|
Superseded by #62, which added this watcher to |
pull Bot
pushed a commit
to Rosenstein/GeoIP2-php
that referenced
this pull request
Jul 22, 2026
Dependabot version update failures only surface as a red triangle in the Dependabot tab, which nobody checks. This weekly scheduled workflow fails if any "Dependabot Updates" run concluded with failure, startup_failure, or timed_out in the last 8 days, so a broken ecosystem surfaces as a red scheduled run that emails a human. See maxmind/device-android#61 for the reference implementation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
pull Bot
pushed a commit
to weiyilai/geoipupdate
that referenced
this pull request
Jul 22, 2026
Dependabot version update failures only surface as a red triangle in the Dependabot tab, which nobody checks. This weekly scheduled workflow fails if any "Dependabot Updates" run concluded with failure, startup_failure, or timed_out in the last 8 days, so a broken ecosystem surfaces as a red scheduled run that emails a human. See maxmind/device-android#61 for the reference implementation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
pull Bot
pushed a commit
to weiyilai/MaxMind-DB-Reader-php
that referenced
this pull request
Jul 22, 2026
Dependabot version update failures only surface as a red triangle in the Dependabot tab, which nobody checks. This weekly scheduled workflow fails if any "Dependabot Updates" run concluded with failure, startup_failure, or timed_out in the last 8 days, so a broken ecosystem surfaces as a red scheduled run that emails a human. See maxmind/device-android#61 for the reference implementation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
pull Bot
pushed a commit
to parhelia512/libmaxminddb
that referenced
this pull request
Jul 22, 2026
Dependabot version update failures only surface as a red triangle in the Dependabot tab, which nobody checks. This weekly scheduled workflow fails if any "Dependabot Updates" run concluded with failure, startup_failure, or timed_out in the last 8 days, so a broken ecosystem surfaces as a red scheduled run that emails a human. See maxmind/device-android#61 for the reference implementation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
pull Bot
pushed a commit
to CrazyForks/GeoIP2-java
that referenced
this pull request
Jul 22, 2026
Dependabot version update failures only surface as a red triangle in the Dependabot tab, which nobody checks. This weekly scheduled workflow fails if any "Dependabot Updates" run concluded with failure, startup_failure, or timed_out in the last 8 days, so a broken ecosystem surfaces as a red scheduled run that emails a human. See maxmind/device-android#61 for the reference implementation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Requested by William Storey, Greg Oschwald · Slack thread
Before: when a Dependabot version-update job errors (e.g. gradle can't resolve a dependency), nothing surfaces it to a human — the failure only shows as a red triangle in Insights → Dependency graph → Dependabot, which nobody checks. That's how this repo's gradle updates were silently broken for ~7 months while github-actions updates kept flowing.
After: a weekly scheduled workflow checks whether any
Dependabot Updatesrun failed in the last 8 days and fails (goes red, and emails whoever last edited the cron) if so — so a broken ecosystem surfaces through a normal failed scheduled run instead of an invisible tab.How: Dependabot version updates run as Actions workflow runs named
Dependabot Updates..github/workflows/dependabot-failure-watcher.ymlruns on a weeklyschedule(plusworkflow_dispatchfor manual runs), queries those runs viagh run list, and exits non-zero if any completed withfailureorstartup_failurein the window. Needs onlyactions: read.Why scheduled rather than
workflow_run: a scheduled run's actor is the user who last edited the cron, so a failure emails a human; aworkflow_run-triggered run's actor isdependabot[bot], which emails no one.Caveats: GitHub auto-disables scheduled workflows after 60 days of repo inactivity; and the failure email targets whoever last modified the cron.
Rollout: this is the reference PR; the same single file is intended for the other ~39 maxmind repos that have a Dependabot config.