From 78dd76a6d83e8f4344e6f95b4d239e067151bd3f Mon Sep 17 00:00:00 2001 From: "Renato S. Yamane" <31208391+renatoyamane@users.noreply.github.com> Date: Fri, 17 Jul 2026 15:57:06 +0100 Subject: [PATCH] feat(triage): persist selected triagers in initial issue comment Store the usernames selected for community issue triage in invisible HTML comment markers alongside the existing public notification. The public comment remains unchanged for contributors, while the stored metadata allows the scheduled reminder workflow to identify the same two triagers after the issue has remained open for: >96 hours && <100 days && not assignned to any developer Signed-off-by: Renato S. Yamane <31208391+renatoyamane@users.noreply.github.com> --- .github/workflows/auto-ping-triagers.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-ping-triagers.yml b/.github/workflows/auto-ping-triagers.yml index 95dc5bdbb7..1e75be05cf 100644 --- a/.github/workflows/auto-ping-triagers.yml +++ b/.github/workflows/auto-ping-triagers.yml @@ -42,6 +42,10 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.payload.issue.number, - body: `${mentions} Please triage this community-created issue within 48 hours.`, + body: [ + '', // tags required for: + ``, // remind-community-issue-triage.yml + `${mentions} Please triage this community-created issue within 48 hours.`, + ].join('\n'), }); core.info(`Requested community triage from: ${picked.join(', ')}`);