Mark Autobuilds feature as deprecated#24981
Conversation
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
|
/review |
There was a problem hiding this comment.
Assessment: 🔴 CRITICAL
Findings
🔴 HIGH — data/summary.yaml line 24
availability: Retired conflicts with deprecation messaging
The summary bar will display "Retired" immediately, but the feature remains active until April 1, 2027. This creates three conflicting signals on the same page:
- Sidebar badge: "Deprecated"
- Summary bar: "Retired" (implies the feature is already gone)
- Warning callout: "will be fully retired on April 1st 2027"
Users currently relying on Automated Builds may think access has already been revoked. Consider using Deprecated (if the summary bar supports it) or keeping the existing value until the actual retirement date.
🟡 MEDIUM — content/manuals/docker-hub/repos/manage/builds/_index.md line 19 (and 8 other files)
Non-standard date format — use "April 1, 2027"
The style guide requires US date format (e.g., "June 26, 2021"). The ordinal "April 1st 2027" is non-standard and missing a comma before the year. This pattern repeats across all 9 modified content files (_index.md, advanced.md, automated-testing.md, link-source.md, manage-builds.md, migrate.md, setup.md, troubleshoot.md, release-notes.md).
Suggested fix: replace April 1st 2027 → April 1, 2027 throughout.
🟡 MEDIUM — content/manuals/docker-hub/release-notes.md lines 21, 23
Internal links use absolute URLs instead of relative paths
The style guide requires relative links for internal links. Lines 21 and 23 use https://docs.docker.com/... absolute URLs, which can break in staging/preview environments.
Suggested fix:
- [Docker Hub Automated Builds](/manuals/docker-hub/repos/manage/builds/)
is being deprecated. Existing accounts will have access until April 1, 2027.
See [migration options](/manuals/docker-hub/repos/manage/builds/migrate/)
for guides on migrating to GitHub Actions or Bitbucket Pipelines.🟡 MEDIUM — content/manuals/retired.md lines 186–189
Grammar — mixed verb forms and missing terminal period
Line 186–187: "allowed building of Docker images … and automatically pushed" mixes a gerund phrase ("building of") with a simple past verb ("pushed"). Line 189 ("will be removed on April 1st 2027") is also missing a terminal period.
Suggested fix:
Docker Hub Automated Builds was a feature of Docker Hub that allowed building
Docker images from source code in an external repository and automatically pushing
the built image to your Docker repositories. This feature has been deprecated and
will be removed on April 1, 2027.|
GitHub is giving me an ambiguous |
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
Description
Marks Docker Hub Automated Builds (Autobuilds) as a deprecated feature to be retired on Apr 1st 2027
Related issues or tickets
Reviews