Conversation
- Add `--disable-release-bump` flag to `gh aw update` command reference, with example and updated options list. By default, `update` now force-updates all GitHub Actions to their latest major version; the new flag restricts force-updates to core `actions/*` only. - Add Android (Termux) to the standalone installer supported platforms list, reflecting the android-arm64 binary added in #18609. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
pelikhan
approved these changes
Feb 27, 2026
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.
Self-Healing Documentation Fixes
This PR was automatically created by the Daily Documentation Healer workflow.
Gaps Fixed
1.
gh aw updatemissing--disable-release-bumpflag — Theupdatecommand docs incli.mdlisted only 7 flags (--dir,--no-merge,--major,--force,--engine,--no-stop-after,--stop-after) and did not mention the new--disable-release-bumpflag or the changed default behavior (auto-force-update of all referenced GitHub Actions to their latest major version). Added a description, an example, and the flag to the options list.2. Standalone installer missing Android (Termux) support — The description of the standalone installer stated "Supports Linux, macOS, FreeBSD, and Windows", omitting Android. The installer now detects the
ANDROID_ROOTenvironment variable and installs theandroid-arm64binary (added in #18609). Updated the platform list to include "Android (Termux)".Root Cause
Why DDUw missed the
--disable-release-bumpgap: Commits #18692 and #18707 were merged on 2026-02-27 at 14:51 UTC and 15:52 UTC respectively — both after DDUw's 6 AM UTC daily run. DDUw would have caught these in tomorrow's run. The healer surfaces them intra-day.Why DDUw missed the Android gap: Commit #18609 (2026-02-27 01:54 UTC) was within DDUw's 24-hour scan window. However, the changed files were build infrastructure (
install-gh-aw.sh,Makefile,build-release.sh) rather than docs — DDUw did not correlate installer script changes with the need to update the supported platforms list incli.md.DDUw Improvement Suggestions
Expand installer script monitoring: Add
install-gh-aw.shandactions/setup-cli/install.shto DDUw's file-change scan. When these files change, cross-reference theSupports …sentence indocs/src/content/docs/setup/cli.mdagainst theprint_info "Supported operating systems: …"line in the installer.Same-day coverage: DDUw runs once at 6 AM UTC. Commits merged later the same day are missed until the next morning. The healer's intra-day scan complements DDUw for same-day feature changes.
Related Commits
feat: update command always updates core actions (actions/*) to latest major versionfeat: force update all actions to latest major version, add --disable-release-bump flagAdd android-arm64 architecture support