From 042066b982a200cef0cbd48f0e4feb8470800906 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 2 Apr 2026 11:17:42 +0200 Subject: [PATCH] docs: refine OSS weekend banner messaging --- .github/oss-weekend.json | 2 +- README.md | 4 ++-- packages/coding-agent/README.md | 4 ++-- scripts/oss-weekend.mjs | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/oss-weekend.json b/.github/oss-weekend.json index 409daa28..77876ad7 100644 --- a/.github/oss-weekend.json +++ b/.github/oss-weekend.json @@ -1,7 +1,7 @@ { "active": true, "mode": "weekend", - "startsAt": "2026-04-02T09:13:17.643Z", + "startsAt": "2026-04-02T09:16:58.317Z", "startsAtText": "Thursday, April 2, 2026", "reopensOn": "2026-04-13", "reopensOnText": "Monday, April 13, 2026", diff --git a/README.md b/README.md index 5ba926e2..f0e2c0c4 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ **Issue tracker reopens Monday, April 13, 2026.** -OSS weekend runs Thursday, April 2, 2026 through Monday, April 13, 2026. New issues and PRs from unapproved contributors are auto-closed during this time. Approved contributors can still open issues and PRs. For support, join [Discord](https://discord.com/invite/3cU7Bz4UPx). +OSS weekend runs Thursday, April 2, 2026 through Monday, April 13, 2026. New issues and PRs from unapproved contributors are auto-closed during this time. Approved contributors can still open issues and PRs if something is genuinely urgent, but please keep that to pressing matters only. For support, join [Discord](https://discord.com/invite/3cU7Bz4UPx). -Current focus: at the moment i'm deep in refactoring internals, and need to focus. +> _Current focus: at the moment i'm deep in refactoring internals, and need to focus._ --- diff --git a/packages/coding-agent/README.md b/packages/coding-agent/README.md index 1c0fcd71..65659a87 100644 --- a/packages/coding-agent/README.md +++ b/packages/coding-agent/README.md @@ -3,9 +3,9 @@ **Issue tracker reopens Monday, April 13, 2026.** -OSS weekend runs Thursday, April 2, 2026 through Monday, April 13, 2026. New issues and PRs from unapproved contributors are auto-closed during this time. Approved contributors can still open issues and PRs. For support, join [Discord](https://discord.com/invite/3cU7Bz4UPx). +OSS weekend runs Thursday, April 2, 2026 through Monday, April 13, 2026. New issues and PRs from unapproved contributors are auto-closed during this time. Approved contributors can still open issues and PRs if something is genuinely urgent, but please keep that to pressing matters only. For support, join [Discord](https://discord.com/invite/3cU7Bz4UPx). -Current focus: at the moment i'm deep in refactoring internals, and need to focus. +> _Current focus: at the moment i'm deep in refactoring internals, and need to focus._ --- diff --git a/scripts/oss-weekend.mjs b/scripts/oss-weekend.mjs index 415cab05..ad36bd01 100644 --- a/scripts/oss-weekend.mjs +++ b/scripts/oss-weekend.mjs @@ -85,8 +85,8 @@ function buildBanner(now, endDate, reason) { "", `**Issue tracker reopens ${reopenDate}.**`, "", - `OSS weekend runs ${startDate} through ${reopenDate}. New issues and PRs from unapproved contributors are auto-closed during this time. Approved contributors can still open issues and PRs. For support, join [Discord](${DISCORD_URL}).`, - ...(normalizedReason ? ["", `Current focus: ${normalizedReason}`] : []), + `OSS weekend runs ${startDate} through ${reopenDate}. New issues and PRs from unapproved contributors are auto-closed during this time. Approved contributors can still open issues and PRs if something is genuinely urgent, but please keep that to pressing matters only. For support, join [Discord](${DISCORD_URL}).`, + ...(normalizedReason ? ["", `> _Current focus: ${normalizedReason}_`] : []), MARKER_END, "", "---",