From 7a9c0efe2888d62532e74d69a9b2f80eb0866c2b Mon Sep 17 00:00:00 2001 From: policyengine-bot Date: Mon, 12 Jan 2026 14:24:27 +0000 Subject: [PATCH 1/2] Update GitHub Actions workflows to use main branch instead of master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All workflow files have been updated to reference the main branch instead of master: - code_changes.yaml: Updated branch reference and comment - deploy.yml: Updated branch reference - pr_code_changes.yaml: Updated branch reference - pr_docs_changes.yaml: Updated branch reference - versioning.yaml: Updated branch reference All workflows already include .github/** in their paths, so they will run on changes to workflow files. Closes #1470 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/code_changes.yaml | 4 ++-- .github/workflows/deploy.yml | 2 +- .github/workflows/pr_code_changes.yaml | 2 +- .github/workflows/pr_docs_changes.yaml | 2 +- .github/workflows/versioning.yaml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code_changes.yaml b/.github/workflows/code_changes.yaml index 7b7bff328..7419d19a4 100644 --- a/.github/workflows/code_changes.yaml +++ b/.github/workflows/code_changes.yaml @@ -1,10 +1,10 @@ -# Workflow that runs on code changes to the master branch. +# Workflow that runs on code changes to the main branch. name: Code changes on: push: branches: - - master + - main paths: - policyengine_uk/** diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 825c11188..8b5534e48 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,7 +5,7 @@ name: Deploy documentation on: push: # Runs on pushes targeting the default branch - branches: [master] + branches: [main] env: # `BASE_URL` determines, relative to the root of the domain, the URL that your site is served from. # E.g., if your site lives at `https://mydomain.org/myproject`, set `BASE_URL=/myproject`. diff --git a/.github/workflows/pr_code_changes.yaml b/.github/workflows/pr_code_changes.yaml index ba99f4f9e..74783c875 100644 --- a/.github/workflows/pr_code_changes.yaml +++ b/.github/workflows/pr_code_changes.yaml @@ -4,7 +4,7 @@ name: Code changes on: pull_request: branches: - - master + - main paths: - policyengine_uk/** diff --git a/.github/workflows/pr_docs_changes.yaml b/.github/workflows/pr_docs_changes.yaml index 088d9f202..e769642ac 100644 --- a/.github/workflows/pr_docs_changes.yaml +++ b/.github/workflows/pr_docs_changes.yaml @@ -4,7 +4,7 @@ name: Docs changes on: pull_request: branches: - - master + - main paths: - docs/** diff --git a/.github/workflows/versioning.yaml b/.github/workflows/versioning.yaml index f92eedacf..570140730 100644 --- a/.github/workflows/versioning.yaml +++ b/.github/workflows/versioning.yaml @@ -1,10 +1,10 @@ # Workflow that runs on versioning metadata updates. -name: Versioning updates +name: Versioning updates on: push: branches: - - master + - main paths: - changelog_entry.yaml From 50b0930d7766f24edb85170fbc40434d8666ad6c Mon Sep 17 00:00:00 2001 From: policyengine-bot Date: Mon, 12 Jan 2026 14:32:02 +0000 Subject: [PATCH 2/2] Run make format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- policyengine_uk/microsimulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/policyengine_uk/microsimulation.py b/policyengine_uk/microsimulation.py index beab95adc..66b57f720 100644 --- a/policyengine_uk/microsimulation.py +++ b/policyengine_uk/microsimulation.py @@ -3,7 +3,7 @@ # Third-party imports import numpy as np -from microdf import MicroDataFrame, MicroSeries +from microdf import MicroDataFrame, MicroSeries # PolicyEngine core imports from policyengine_core.tracers import SimpleTracer