From eae7883c2222542428079334c1d14b7e80212dfb Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 8 Apr 2026 13:39:50 +0100 Subject: [PATCH 1/4] skip github-actions[bot] from list of contributors --- webtools/markup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtools/markup.py b/webtools/markup.py index 0415581..a4ef822 100644 --- a/webtools/markup.py +++ b/webtools/markup.py @@ -213,7 +213,7 @@ def list_contributors(format: str = "html") -> str: if len(page) == 0: break for user in page: - if user.login not in included: + if user.login not in included and user.login != "github-actions[bot]": extras.append((user.login, user.name)) i += 1 if len(extras) > 0: @@ -260,7 +260,7 @@ def list_contributors(format: str = "html") -> str: if len(page) == 0: break for user in page: - if user.login not in included: + if user.login not in included and user.login != "github-actions[bot]": if format == "bibtex": names.append("others") else: From 83a8a0605560ebaf113c3aac2f6f8643f60fffa7 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 8 Apr 2026 13:40:43 +0100 Subject: [PATCH 2/4] version++ --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2b5e157..db4a726 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "website-build-tools" -version = "0.1.12" +version = "0.1.13" description = "tools for building websites, used by defelement.org and quadraturerules.org" readme = "README.md" requires-python = ">=3.10.0" From 05f275a039d07b98fe935bd1ebd57272b90b863c Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 8 Apr 2026 13:51:28 +0100 Subject: [PATCH 3/4] remove schedule so its stops disabling (I think) --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68ebe6b..1c7d19f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,8 +5,6 @@ on: pull_request: branches: - main - schedule: - - cron: "0 7 * * 1" jobs: python-library: From 33e88d22f19485160ccddd27df9eb3c0519de5d3 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 8 Apr 2026 13:54:01 +0100 Subject: [PATCH 4/4] version number --- webtools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/__init__.py b/webtools/__init__.py index 7feec0c..f578004 100644 --- a/webtools/__init__.py +++ b/webtools/__init__.py @@ -1,3 +1,3 @@ """Website building tools.""" -__version__ = "0.1.12" +__version__ = "0.1.13"