From 626ad9219522c5a8a956e0a9d25e2c502e548d02 Mon Sep 17 00:00:00 2001 From: MicrosoftWindows96 Date: Sat, 9 May 2026 12:50:08 +0100 Subject: [PATCH 1/3] chore(ci): allow repo scope in commitlint Adds the 'repo' scope to scope-enum so repository-meta commits (FUNDING.yml, BACKERS.md, CONTRIBUTORS.md, governance metadata) have a dedicated, semantically accurate scope rather than being forced into 'ci' or 'docs'. Signed-off-by: MicrosoftWindows96 --- commitlint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/commitlint.config.mjs b/commitlint.config.mjs index 0def12d..15fd55d 100644 --- a/commitlint.config.mjs +++ b/commitlint.config.mjs @@ -23,6 +23,7 @@ export default { 'compose', 'ci', 'deps', + 'repo', ]], 'scope-empty': [0, 'never'], 'subject-case': [2, 'never', ['pascal-case', 'upper-case']], From 2183a637a6ccce960cc51b9068d0737cb48a027f Mon Sep 17 00:00:00 2001 From: MicrosoftWindows96 Date: Sat, 9 May 2026 12:50:13 +0100 Subject: [PATCH 2/3] chore(repo): add GitHub Sponsors button via FUNDING.yml Wires the approved Sponsors profile into the repository's sponsor button. Other platforms (Open Collective, Ko-fi, custom URLs) can be appended to the same file as additional channels come online. Signed-off-by: MicrosoftWindows96 --- .github/FUNDING.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..95ca149 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# Sponsor button shown on the repository home page and repository +# hover cards. The single approved channel today is GitHub Sponsors; +# additional platforms (Open Collective, Ko-fi, custom URLs) can be +# layered on later by appending their respective keys here. +github: [MicrosoftWindows96] From ae9297aa580ec301b02d84e8eca40197f7e7e61b Mon Sep 17 00:00:00 2001 From: MicrosoftWindows96 Date: Sat, 9 May 2026 12:57:05 +0100 Subject: [PATCH 3/3] chore(repo): trigger CI re-evaluation after ruleset update Signed-off-by: MicrosoftWindows96