From 412c68b57c163ab9ce243abb96809348e4112656 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 19:36:03 +0000 Subject: [PATCH 1/3] Initial plan From 297c33870402ada5fbc5a40cb2fe27c9e28bf515 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 19:42:23 +0000 Subject: [PATCH 2/3] Initial plan: add Step 1c for scanning recently closed documentation issues Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/daily-safe-output-integrator.lock.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/daily-safe-output-integrator.lock.yml b/.github/workflows/daily-safe-output-integrator.lock.yml index bae838f72a7..135d4cc1f65 100644 --- a/.github/workflows/daily-safe-output-integrator.lock.yml +++ b/.github/workflows/daily-safe-output-integrator.lock.yml @@ -284,6 +284,10 @@ jobs: persist-credentials: false - name: Create gh-aw temp directory run: bash /opt/gh-aw/actions/create_gh_aw_tmp_dir.sh + - name: Configure gh CLI for GitHub Enterprise + run: bash /opt/gh-aw/actions/configure_gh_for_ghe.sh + env: + GH_TOKEN: ${{ github.token }} - name: Configure Git credentials env: REPO_NAME: ${{ github.repository }} From 3d25af7f224e5a2d80cb9321e3e3c76b58f2fb1a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 19:47:24 +0000 Subject: [PATCH 3/3] Add Step 1c to daily-doc-updater: scan recently closed documentation issues Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/daily-doc-updater.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/daily-doc-updater.md b/.github/workflows/daily-doc-updater.md index c3027a77b7a..231130dd4c0 100644 --- a/.github/workflows/daily-doc-updater.md +++ b/.github/workflows/daily-doc-updater.md @@ -87,6 +87,18 @@ For each open issue: 3. If confirmed, include a fix in this run's PR and reference the issue with `Closes #NNN`. 4. If the gap is already fixed, note it (do not reopen or comment on the issue). +### 1c. Scan Recently Closed Documentation Issues + +Search for documentation issues closed in the last 7 days (replace YYYY-MM-DD with the date 7 days ago): + +``` +repo:${{ github.repository }} is:issue is:closed label:documentation closed:>=YYYY-MM-DD +``` + +For each closed issue: +- **closed as completed**: Check whether a `[docs]` PR references it. If no such PR exists, treat it as an unaddressed gap and follow the normal Step 2 flow. +- **closed as not_planned**: Do not create documentation based solely on this issue. Instead, cross-reference the issue's subject matter against commits from the same 7-day window (Step 2). If a related code change is found, treat it as a new documentation gap (independent of the original issue decision) and follow the normal Step 2 flow for that code change. + ### 2. Analyze Changes For each merged PR and commit, analyze: