diff --git a/gh_review_project/finish_milestone.py b/gh_review_project/finish_milestone.py new file mode 100644 index 00000000..7ad44536 --- /dev/null +++ b/gh_review_project/finish_milestone.py @@ -0,0 +1,204 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- + +""" +This script will run the processes needed to close off and finish a milestone + * Archive all completed PRs against the milestone in the Review Tracker Project + * Close the milestone in each repository + * Report on: + * Closed PRs at a different milestone + * Remaining open PRs and issues against this milestone + * Closed PRs against this milestone +""" +from collections import defaultdict +from pathlib import Path +import argparse +from review_project import ProjectData + + +def print_banner(message: str) -> None: + print("\n") + print("=" * len(message)) + print(message) + print("=" * len(message)) + + +def still_open(open_prs: dict, current_milestone: str) -> int: + """ + Report on all open pull requests for the current milestone + """ + + print_banner(f"Checking for open pull requests for {current_milestone}") + + total = 0 + + for repo in open_prs: + print(f"{repo} \n{'-'*len(repo)}") + for pr in open_prs[repo]: + print(f"{pr.status: <18} #{pr.number: <5} {pr.title}") + + count = len(open_prs[repo]) + print(f"-> {count} open pull request(s) in {repo} \n") + total += count + + if total == 0: + print(f"No open pull requests for {current_milestone} \n") + + return total + + +def closed_other(closed_prs: dict, current_milestone: str) -> int: + """ + Report on closed pull requests not at the current milestone. + """ + + print_banner(f"Checking for closed pull requests not for {current_milestone}") + + total = 0 + + for milestone in closed_prs: + if milestone == current_milestone: + continue + + for repo in closed_prs[milestone]: + print(f"{repo} \n{'-' * len(repo)}") + for pr in closed_prs[milestone][repo]: + print(f"#{pr.number : <5} {pr.title}") + + count = len(closed_prs[milestone][repo]) + print( + f"-> {count} closed pull request(s) in {repo} at milestone {milestone} \n" + ) + total += count + + if total == 0: + print(f"No closed pull requests not for {current_milestone} \n") + + return total + + +def check_ready(open_prs: dict, closed_prs: dict, milestone: str) -> None: + """ + Check if the milestone is ready to be closed by confirming that: + * all pull requests for this milestone have been completed + * all closed pull requests in the project are in this milestone. + + Give the user the choice to continue regardless since there may be valid + exceptions. + """ + total_open = still_open(open_prs[milestone], milestone) + total_other = closed_other(closed_prs, milestone) + + if total_open or total_other: + print("=" * 50) + print( + f"{total_open} open pull request(s) in {milestone} and " + f"{total_other} closed pull request(s) not in {milestone}." + ) + cont = input("Would you like to continue with closing this milestone? (y/n) ") + + if cont == "n": + exit(0) + elif cont != "y": + print("Unrecognised input, please select y or n") + + +def report(closed: dict, milestone: str) -> None: + """ + Report on the pull requests completed in this milestone + """ + + print_banner(f"Pull requests completed for {milestone}") + + total = 0 + for repo in closed: + count = len(closed[repo]) + total += count + print(f"{repo: <20} {count: >3} pull requests") + + print(f"{total} pull requests completed in {milestone}") + + + +def parse_args(): + """ + Read command line args + """ + + testfile = Path(__file__).parent / "test" / "test.json" + + parser = argparse.ArgumentParser( + "Archive milestone contents within the project and close the " + "milestone within each repository." + ) + + parser.add_argument("--milestone", help="Milestone to archive and close.") + parser.add_argument( + "--test", + action="store_true", + help="Use test input files.", + ) + parser.add_argument( + "--capture_project", + action="store_true", + help="Capture the current project status into the test file", + ) + parser.add_argument( + "--file", + default=testfile, + help="Filepath to test data for either capturing the project status, " + "or use as input data.", + ) + parser.add_argument( + "--dry", + action="store_true", + help="Dry run. Print commands, don't action them. Always true when " + "running with test data.", + ) + + args = parser.parse_args() + + args.file = Path(args.file) + args.file = args.file.expanduser().resolve() + + if args.test: + args.dry = True + + return args + + +def main( + milestone: str, test: bool, capture_project: bool, file: Path, dry: bool +) -> None: + + # Get milestone data + if test: + data = ProjectData.from_file(file) + else: + data = ProjectData.from_github(capture_project, file) + + open_prs_by_milestones = data.get_by_milestone("open") + closed_prs_by_milestones = data.get_by_milestone("closed") + + # Process data and report on status + check_ready(open_prs_by_milestones, closed_prs_by_milestones, milestone) + report(closed_prs_by_milestones[milestone], milestone) + + # Archive pull requests at the milestone + print_banner(f"Archiving Milestone {milestone}") + data.archive_milestone(milestone, dry_run=dry) + + # Close milestones + # TODO: run this command from here, rather than prompting user. Leaving + # like this until script feels stable. + print_banner("Milestone Completed in Simulation Systems Review Tracker project") + print("Run this command to close the milestone in all repositories:") + print(f'./sbin/gh_manage_milestones -t "{milestone}" -m close') + + +if __name__ == "__main__": + args = parse_args() + main(args.milestone, args.test, args.capture_project, args.file, args.dry) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index f4ad7f36..1a5df9b4 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -5,7 +5,7 @@ # ----------------------------------------------------------------------------- """ -Class and functions for interacting with the Simulation Systems Review Tracker +Classes and functions for interacting with the Simulation Systems Review Tracker Project. """ from __future__ import annotations @@ -16,34 +16,63 @@ import shlex from collections import defaultdict +project_id = 376 +project_owner = "MetOffice" + + +def run_command(command: str) -> subprocess.CompletedProcess: + output = subprocess.run(shlex.split(command), capture_output=True, timeout=180) + + if output.returncode: + raise RuntimeError(output.stderr.decode()) + + return output + class ProjectData: """ A class to hold GitHub project data - data: dict Data filtered to contain most needed pull request details, - sorted by repository. + data: list raw_data turned into a list of PullRequest objects. test: bool Run using test data and extra logging. + milestones: list All milestones currently used in the project + repos: list All repositories currectly represented in the project """ - def __init__(self, data: dict, test: bool = False): + open_states = [ + "In Progress", + "SciTech Review", + "Code Review", + "Approved", + "Changes Requested", + ] + + def __init__( + self, + data: list, + test: bool = False + ): self.data = data self.test = test + # Extract these once as useful lists + self.milestones = self._extract_milestones() + self.repos = self._extract_repositories() + @classmethod def from_github(cls, capture: bool = False, file: Path = None) -> ProjectData: """ Retrieve data from GitHub API and initialise the class. """ - command = "gh project item-list 376 -L 500 --owner MetOffice --format json" - output = subprocess.run(shlex.split(command), capture_output=True, timeout=180) - if output.returncode: - raise RuntimeError( - "Error fetching GitHub Project data: \n " + output.stderr.decode() - ) + command = f"gh project item-list {project_id} -L 500 --owner {project_owner} --format json" + output = run_command(command) raw_data = json.loads(output.stdout) + # Remove body as is large before working with or storing data. + for pr in raw_data["items"]: + pr["content"].pop("body") + if capture: if file: with open(file, "w") as f: @@ -67,57 +96,61 @@ def from_file(cls, file: Path) -> ProjectData: return cls(data, test=True) @classmethod - def _extract_data(cls, raw_data: dict) -> dict: + def _extract_data(cls, raw_data: dict) -> list: """ Extract useful information from the raw data and - store it in a dictionary keyed by repository. + store it in a list of PullRequest objects. Also extract a list of + milestones and repositories found in the project. """ - data = defaultdict(list) + data = [] for pr in raw_data["items"]: - pull_request = {} - pull_request["id"] = pr["id"] - pull_request["title"] = pr["content"]["title"] - pull_request["number"] = pr["content"]["number"] + pull_request = PullRequest( + id=pr["id"], + number=pr["content"]["number"], + title=pr["content"]["title"], + repo=pr["content"]["repository"].replace("MetOffice/", ""), + ) if "status" in pr: - pull_request["status"] = pr["status"] - else: - pull_request["status"] = None + pull_request.status = pr["status"] if "milestone" in pr: - pull_request["milestone"] = pr["milestone"]["title"] - else: - pull_request["milestone"] = None + pull_request.milestone = pr["milestone"]["title"] if "assignee" in pr: - pull_request["assignee"] = pr["assignees"] - else: - pull_request["assignee"] = None + pull_request.assignee = pr["assignees"] if "code Review" in pr: - pull_request["code review"] = pr["code Review"] - else: - pull_request["code review"] = None + pull_request.codeReview = pr["code Review"] if "sciTech Review" in pr: - pull_request["scitech review"] = pr["sciTech Review"] - else: - pull_request["scitech review"] = None + pull_request.scitechReview = pr["sciTech Review"] - repo = pr["content"]["repository"].replace("MetOffice/", "") - data[repo].append(pull_request) + data.append(pull_request) return data + def _extract_milestones(self) -> set: + milestones = set() + for pr in self.data: + milestones.add(pr.milestone) + + return milestones + + def _extract_repositories(self) -> set: + repositories = set() + for pr in self.data: + repositories.add(pr.repo) + + return repositories + def get_reviewers_for_repo(self, repo: str) -> list: """ Return a list of reviewers for a given repository. """ - if repo in self.data: - pull_requests = self.data[repo] - else: + if repo not in self.repos: return [] reviewers = [] @@ -125,33 +158,102 @@ def get_reviewers_for_repo(self, repo: str) -> list: if self.test: print("\n=== Reviewers for " + repo) - for pr in pull_requests: - sr = pr["scitech review"] - if sr: - reviewers.append(sr) - - cr = pr["code review"] - if cr: - reviewers.append(cr) - - if self.test and (cr or sr): - # Handle case where these are None - if not sr: - sr = "" - if not cr: - cr = "" - - print( - "SciTech:", - f"{sr: <18}", - "Code:", - f"{cr: <18}", - pr["title"], - ) + for pr in self.data: + if pr.repo == repo: + sr = pr.scitechReview + if sr: + reviewers.append(sr) + + cr = pr.codeReview + if cr: + reviewers.append(cr) + + if self.test and (cr or sr): + # Handle case where these are None + if not sr: + sr = "" + if not cr: + cr = "" + + print( + "SciTech:", + f"{sr: <18}", + "Code:", + f"{cr: <18}", + pr.title, + ) return reviewers def get_repositories(self) -> list: """Return a list of repositories found in the project data.""" - return list(self.data.keys()) + return self.repos + + def get_by_milestone(self, status: str = "all") -> dict: + """ + Return pull requests organized by milestone and repository. These can + be filtered by status. + + status: str Status to include. Valid values are any project status + values and all, open or closed + """ + + milestone_data = {} + for milestone in self.milestones: + milestone_data[milestone] = defaultdict(list) + + for pr in self.data: + if ( + pr.status == status + or status == "all" + or (status == "open" and pr.status in self.open_states) + or (status == "closed" and pr.status not in self.open_states) + ): + milestone_data[pr.milestone][pr.repo].append(pr) + + return milestone_data + + def archive_milestone(self, milestone: str, dry_run: bool = False) -> None: + + print(f"Archiving all completed pull requests for {milestone}") + + dry_run = dry_run | self.test # if test data, or a dryrun, then dummy commands + + closed_prs = self.get_by_milestone(status="closed")[milestone] + for repo in closed_prs: + for pr in closed_prs[repo]: + pr.archive(dry_run) + + +class PullRequest: + + def __init__( + self, id: str = None, number: str = None, title: str = None, repo: str = None + ): + self.id = id + self.number = number + self.title = title + self.repo = repo + + self.status = None + self.milestone = "None" + self.assignee = None + self.scitechReview = None + self.codeReview = None + + def archive(self, dry_run: bool = False): + """ + Archive this pull request from the project. + + dry_run: If true, print the command used rather than archiving. + """ + + command = f"gh project item-archive {project_id} --owner {project_owner} --id {self.id}" + message = f"Archiving #{self.number} in {self.repo}" + + if dry_run: + print(f"[DRY RUN] {message: <40} {command}") + else: + print(message) + run_command(command) diff --git a/gh_review_project/test/test.json b/gh_review_project/test/test.json index 964b0544..6db02cfd 100644 --- a/gh_review_project/test/test.json +++ b/gh_review_project/test/test.json @@ -1,2793 +1,5930 @@ { - "items": [ - { - "assignees": [ - "yaswant", - "james-bruten-mo", - "cameronbateman-mo" - ], - "content": { - "number": 72, - "repository": "MetOffice/git_playground", - "title": "added python script and github workflow for auto assigning pr reviewers", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/72" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgfbFi4", - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo", - "yaswant" - ], - "sciTech Review": "james-bruten-mo", - "status": "SciTech Review", - "title": "added python script and github workflow for auto assigning pr reviewers" - }, - { - "assignees": [ - "Pierre-siddall" - ], - "content": { - "number": 71, - "repository": "MetOffice/git_playground", - "title": "Implement build documentation workflow ", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/71" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgfMMI4", - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "yaswant", - "yaswant", - "andrewcoughtrie" - ], - "sciTech Review": "yaswant", - "title": "Implement build documentation workflow " - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 45, - "repository": "MetOffice/git_playground", - "title": "Auto assign PR author as assignee", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/45" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgdIMSE", - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "jennyhickson" - ], - "title": "Auto assign PR author as assignee" - }, - { - "assignees": [ - "r-sharp", - "cameronbateman-mo" - ], - "content": { - "number": 104, - "repository": "MetOffice/SimSys_Scripts", - "title": "added bash script to automate jules kgo process.", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/104" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzge8FcQ", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "r-sharp", - "ericaneininger" - ], - "status": "SciTech Review", - "title": "added bash script to automate jules kgo process." - }, - { - "assignees": [ - "yaswant", - "cameronbateman-mo" - ], - "content": { - "number": 55, - "repository": "MetOffice/git_playground", - "title": "added auto PR assigner", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/55" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgerEIU", - "repository": "https://github.com/MetOffice/git_playground", - "status": "Code Review", - "title": "added auto PR assigner" - }, - { - "content": { - "number": 65, - "repository": "MetOffice/git_playground", - "title": "Test metoffice action for artifactory setup", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/65" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzge8qms", - "repository": "https://github.com/MetOffice/git_playground", - "title": "Test metoffice action for artifactory setup" - }, - { - "content": { - "number": 66, - "repository": "MetOffice/git_playground", - "title": "Test composite", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/66" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzge-PAs", - "repository": "https://github.com/MetOffice/git_playground", - "title": "Test composite" - }, - { - "content": { - "number": 88, - "repository": "MetOffice/git_playground", - "title": "trac wiki to markdown converter", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/88" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzggbEQ4", - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "trac wiki to markdown converter" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 96, - "repository": "MetOffice/git_playground", - "title": "Refactor CLA check workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/96" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgg7UQg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo" - ], - "title": "Refactor CLA check workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "t00sa", - "content": { - "number": 1, - "repository": "MetOffice/gcom", - "title": "gcom test suite git", - "type": "PullRequest", - "url": "https://github.com/MetOffice/gcom/pull/1" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghKetA", - "milestone": { - "description": "", - "dueOn": "", - "title": "Git Migration" - }, - "repository": "https://github.com/MetOffice/gcom", - "reviewers": [ - "t00sa", - "t00sa" - ], - "status": "Done", - "title": "gcom test suite git" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 27, - "repository": "MetOffice/growss", - "title": "Optimise validation action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/27" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghMYH0", - "labels": [ - "CI" - ], - "repository": "https://github.com/MetOffice/growss", - "status": "SciTech Review", - "title": "Optimise validation action" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 99, - "repository": "MetOffice/git_playground", - "title": "Demo growss build/deploy workflows", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/99" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghQCy4", - "labels": [ - "cla-required" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "Demo growss build/deploy workflows" - }, - { - "content": { - "number": 494, - "repository": "MetOffice/simulation-systems", - "title": "style: apply PEP8 formatting", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/494" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghVd3A", - "repository": "https://github.com/MetOffice/simulation-systems", - "status": "Done", - "title": "style: apply PEP8 formatting" - }, - { - "assignees": [ - "Pierre-siddall" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 101, - "repository": "MetOffice/git_playground", - "title": "Test fortran linter", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/101" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghY6mc", - "labels": [ - "enhancement", - "cla-signed", - "CI", - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Code Review", - "title": "Test fortran linter" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 500, - "repository": "MetOffice/simulation-systems", - "title": "Use reusable workflow to build and deploy sphinx docs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/500" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghhhQo", - "labels": [ - ":blue_book:Documentation" - ], - "repository": "https://github.com/MetOffice/simulation-systems", - "status": "SciTech Review", - "title": "Use reusable workflow to build and deploy sphinx docs" - }, - { - "content": { - "number": 10, - "repository": "MetOffice/um", - "title": "Add fab script", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um/pull/10" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgh1YlI", - "repository": "https://github.com/MetOffice/um", - "status": "SciTech Review", - "title": "Add fab script" - }, - { - "assignees": [ - "dcaseGH" - ], - "code Review": "cameronbateman-mo", - "content": { - "number": 15, - "repository": "MetOffice/jules", - "title": "JASMIN site migration for JULES - git", - "type": "PullRequest", - "url": "https://github.com/MetOffice/jules/pull/15" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiM9qU", - "repository": "https://github.com/MetOffice/jules", - "reviewers": [ - "james-bruten-mo" - ], - "sciTech Review": "james-bruten-mo", - "status": "SciTech Review", - "title": "JASMIN site migration for JULES - git" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 105, - "repository": "MetOffice/git_playground", - "title": "Test improved cla-check from growss develop", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/105" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiUChU", - "labels": [ - "cla-signed", - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Test improved cla-check from growss develop" - }, - { - "assignees": [ - "mo-rickywong" - ], - "code Review": "MatthewHambley", - "content": { - "number": 175, - "repository": "MetOffice/lfric_core", - "title": "Reworked Configuration Namelist Access API", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/175" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiZyxI", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "MatthewHambley", - "stevemullerworth", - "mike-hobson", - "andrewcoughtrie", - "EdHone", - "MatthewHambley", - "allynt", - "MatthewHambley" - ], - "sciTech Review": "@allynt", - "status": "SciTech Review", - "title": "Reworked Configuration Namelist Access API" - }, - { - "code Review": "mo-alistairp ", - "content": { - "number": 36, - "repository": "MetOffice/lfric_apps", - "title": "Removing populate_graph_lfricinputs.cylc", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/36" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiaaKI", - "labels": [ - "cla-required" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Removing populate_graph_lfricinputs.cylc" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 529, - "repository": "MetOffice/simulation-systems", - "title": "Add GitHub Copilot instructions", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/529" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgieVuU", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Add GitHub Copilot instructions" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "jennyhickson", - "content": { - "number": 530, - "repository": "MetOffice/simulation-systems", - "title": "Local deploy config", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/530" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiebbQ", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson", - "jennyhickson" - ], - "status": "Done", - "title": "Local deploy config" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 531, - "repository": "MetOffice/simulation-systems", - "title": "update um release instructions", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/531" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgifuu8", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson", - "jennyhickson" - ], - "status": "Done", - "title": "update um release instructions" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 146, - "repository": "MetOffice/SimSys_Scripts", - "title": "switch rsyncs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/146" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgifv8c", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "switch rsyncs" - }, - { - "assignees": [ - "jennyhickson" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 147, - "repository": "MetOffice/SimSys_Scripts", - "title": "Workload debug", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/147" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgigYaI", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Workload debug" - }, - { - "content": { - "number": 182, - "repository": "MetOffice/lfric_core", - "title": "Codeowners update", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/182" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgigxXk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mike-hobson" - ], - "status": "Done", - "title": "Codeowners update" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 43, - "repository": "MetOffice/lfric_apps", - "title": "fix local build script", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/43" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgig0XM", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "fix local build script" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "allynt", - "content": { - "number": 44, - "repository": "MetOffice/lfric_apps", - "title": "Fixing adjoint failures with transport log_space config variable set to true (broken)", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/44" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgig0tM", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "tom-j-h", - "allynt" - ], - "status": "Done", - "title": "Fixing adjoint failures with transport log_space config variable set to true (broken)" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 46, - "repository": "MetOffice/growss", - "title": "remove labelling when cla already signed on base", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/46" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgilBmY", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "remove labelling when cla already signed on base" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 534, - "repository": "MetOffice/simulation-systems", - "title": "SSH Passphrase Advice", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/534" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgilIpg", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "SSH Passphrase Advice" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 14, - "repository": "MetOffice/mule", - "title": "add shumlib testing", - "type": "PullRequest", - "url": "https://github.com/MetOffice/mule/pull/14" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgilpZg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/mule", - "reviewers": [ - "yaswant", - "yaswant" - ], - "status": "Done", - "title": "add shumlib testing" - }, - { - "content": { - "number": 185, - "repository": "MetOffice/lfric_core", - "title": "Add some words about the reason for testing", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/185" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgimF7A", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "allynt", - "allynt" - ], - "status": "Done", - "title": "Add some words about the reason for testing" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 148, - "repository": "MetOffice/SimSys_Scripts", - "title": "check_macro_chains to fail gracefully on FCM", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/148" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgimes0", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "check_macro_chains to fail gracefully on FCM" - }, - { - "assignees": [ - "tinyendian" - ], - "code Review": "EdHone", - "content": { - "number": 53, - "repository": "MetOffice/lfric_apps", - "title": "Additional PC2 optimisations for NG-ARCH", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/53" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgioBpQ", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "MetBenjaminWent" - ], - "sciTech Review": "MetBenjaminWent ", - "status": "SciTech Review", - "title": "Additional PC2 optimisations for NG-ARCH" - }, - { - "assignees": [ - "mo-lottieturner" - ], - "code Review": "mo-alistairp", - "content": { - "number": 54, - "repository": "MetOffice/lfric_apps", - "title": "Removing populate_graph_lfricinputs.cylc", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/54" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipEyc", - "labels": [ - "cla-signed", - "LFRic Inputs" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo", - "mo-alistairp" - ], - "sciTech Review": "james-bruten-mo", - "status": "Code Review", - "title": "Removing populate_graph_lfricinputs.cylc" - }, - { - "assignees": [ - "ukmo-juan-castillo" - ], - "code Review": "mo-lottieturner", - "content": { - "number": 55, - "repository": "MetOffice/lfric_apps", - "title": "Generation of lfric2lfric lbcs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/55" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipHzg", - "labels": [ - "cla-signed", - "LFRic Inputs" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mike-hobson", - "mike-hobson", - "mo-lottieturner" - ], - "sciTech Review": "mike-hobson", - "status": "Code Review", - "title": "Generation of lfric2lfric lbcs" - }, - { - "assignees": [ - "MetBenjaminWent" - ], - "code Review": "mo-lottieturner", - "content": { - "number": 56, - "repository": "MetOffice/lfric_apps", - "title": "Transmute explicit no Transformation list and global.py", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/56" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipIv4", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "oakleybrunt", - "oakleybrunt", - "mo-lottieturner" - ], - "sciTech Review": "oakleybrunt", - "status": "Code Review", - "title": "Transmute explicit no Transformation list and global.py" - }, - { - "assignees": [ - "MetBenjaminWent" - ], - "code Review": "mo-lucy-gordon", - "content": { - "number": 57, - "repository": "MetOffice/lfric_apps", - "title": "Some of Boundary Layer PSyclone-d", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/57" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipJBQ", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jcsmeto", - "mo-lucy-gordon", - "christophermaynard" - ], - "sciTech Review": "jcsmeto", - "status": "SciTech Review", - "title": "Some of Boundary Layer PSyclone-d" - }, - { - "code Review": "yaswant", - "content": { - "number": 537, - "repository": "MetOffice/simulation-systems", - "title": "add new FAQs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/537" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipTjc", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "add new FAQs" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "harry-shepherd ", - "content": { - "number": 59, - "repository": "MetOffice/lfric_apps", - "title": "Introducing cache for adjoint lookup tables (broken)", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/59" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiplYE", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mo-joshuacolclough" - ], - "status": "Done", - "title": "Introducing cache for adjoint lookup tables (broken)" - }, - { - "assignees": [ - "mo-lottieturner" - ], - "code Review": "allynt", - "content": { - "number": 187, - "repository": "MetOffice/lfric_core", - "title": "Adding logging to tweak_iodef", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/187" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgip0Is", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "status": "SciTech Review", - "title": "Adding logging to tweak_iodef" - }, - { - "content": { - "number": 188, - "repository": "MetOffice/lfric_core", - "title": "Update root Readme file.", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/188" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgip2Q0", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant", - "mike-hobson" - ], - "status": "Done", - "title": "Update root Readme file." - }, - { - "assignees": [ - "MetBenjaminWent" - ], - "content": { - "number": 62, - "repository": "MetOffice/lfric_apps", - "title": "Boundary Layer - bdy_expl2 optimisations", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/62" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqBQo", - "labels": [ - "cla-required" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Boundary Layer - bdy_expl2 optimisations" - }, - { - "content": { - "number": 63, - "repository": "MetOffice/lfric_apps", - "title": "Remove user contact question from issue template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/63" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqEBU", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Remove user contact question from issue template" - }, - { - "content": { - "number": 189, - "repository": "MetOffice/lfric_core", - "title": "Remove contact details from Issue template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/189" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqGFo", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "andrewcoughtrie" - ], - "status": "Done", - "title": "Remove contact details from Issue template" - }, - { - "assignees": [ - "andrewcoughtrie" - ], - "code Review": "stevemullerworth", - "content": { - "number": 190, - "repository": "MetOffice/lfric_core", - "title": "Fixed duplication of directory ownership, should have been a differen\u2026", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/190" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqVsY", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant", - "stevemullerworth" - ], - "sciTech Review": "yaswant", - "status": "Done", - "title": "Fixed duplication of directory ownership, should have been a differen\u2026" - }, - { - "assignees": [ - "jasonjunweilyu" - ], - "code Review": "MetBenjaminWent", - "content": { - "number": 65, - "repository": "MetOffice/lfric_apps", - "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/65" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiroos", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mo-alistairp", - "mo-alistairp", - "MetBenjaminWent" - ], - "sciTech Review": "mo-alistairp", - "status": "Code Review", - "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "paulfield2024", - "content": { - "number": 1, - "repository": "MetOffice/monc", - "title": "add files for monc", - "type": "PullRequest", - "url": "https://github.com/MetOffice/monc/pull/1" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisJ_g", - "repository": "https://github.com/MetOffice/monc", - "reviewers": [ - "yaswant", - "paulfield2024" - ], - "sciTech Review": "yaswant", - "status": "Code Review", - "title": "add files for monc" - }, - { - "code Review": "mo-rickywong", - "content": { - "number": 191, - "repository": "MetOffice/lfric_core", - "title": "Fail gracefully if the configuration namelist doesn't exist", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/191" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisRIQ", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "stevemullerworth", - "andrewcoughtrie", - "mo-rickywong", - "EdHone", - "MatthewHambley", - "MatthewHambley" - ], - "sciTech Review": "andrewcoughtrie", - "status": "Done", - "title": "Fail gracefully if the configuration namelist doesn't exist" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 47, - "repository": "MetOffice/growss", - "title": "Remove label", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/47" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisU60", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant", - "andrewcoughtrie" - ], - "status": "Done", - "title": "Remove label" - }, - { - "content": { - "number": 48, - "repository": "MetOffice/growss", - "title": "Remove label", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/48" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisl4Y", - "repository": "https://github.com/MetOffice/growss", - "status": "Done", - "title": "Remove label" - }, - { - "code Review": "mo-rickywong", - "content": { - "number": 67, - "repository": "MetOffice/lfric_apps", - "title": "Check config name", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/67" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgis7KA", - "labels": [ - "enhancement", - "Linked Core", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mo-rickywong" - ], - "sciTech Review": "andrewcoughtrie", - "status": "Done", - "title": "Check config name" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 149, - "repository": "MetOffice/SimSys_Scripts", - "title": "update to use bash -l", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/149" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgis_zo", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "update to use bash -l" - }, - { - "content": { - "number": 22, - "repository": "MetOffice/jules", - "title": "Coupling of WHAM! model of human fire use and management with INFERNO", - "type": "PullRequest", - "url": "https://github.com/MetOffice/jules/pull/22" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitYHw", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/jules", - "status": "SciTech Review", - "title": "Coupling of WHAM! model of human fire use and management with INFERNO" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 540, - "repository": "MetOffice/simulation-systems", - "title": "add note to enable stable", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/540" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitc0Q", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "add note to enable stable" - }, - { - "assignees": [ - "tommbendall" - ], - "content": { - "number": 69, - "repository": "MetOffice/lfric_apps", - "title": "Correct the sample_physics_winds_correction option", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/69" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitsto", - "labels": [ - "bug", - "KGO", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Correct the sample_physics_winds_correction option" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 150, - "repository": "MetOffice/SimSys_Scripts", - "title": "respect gitignore", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/150" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitymk", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "respect gitignore" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "MatthewHambley", - "content": { - "number": 2, - "repository": "MetOffice/rose_picker", - "title": "Tidy up repo and add checks", - "type": "PullRequest", - "url": "https://github.com/MetOffice/rose_picker/pull/2" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiuLSs", - "labels": [ - "enhancement" - ], - "repository": "https://github.com/MetOffice/rose_picker", - "reviewers": [ - "MatthewHambley", - "MatthewHambley", - "james-bruten-mo", - "james-bruten-mo" - ], - "sciTech Review": "james-bruten-mo", - "status": "Done", - "title": "Tidy up repo and add checks" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "allynt", - "content": { - "number": 71, - "repository": "MetOffice/lfric_apps", - "title": "Fixing adjoint failures with transport log_space config variable set to true", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/71" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiuvmk", - "labels": [ - "bug", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "allynt", - "tom-j-h" - ], - "sciTech Review": "tom-j-h", - "status": "Code Review", - "title": "Fixing adjoint failures with transport log_space config variable set to true" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "harry-shepherd", - "content": { - "number": 72, - "repository": "MetOffice/lfric_apps", - "title": "Introducing cache for adjoint lookup tables", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/72" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiuzc0", - "labels": [ - "enhancement", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "harry-shepherd", - "mo-joshuacolclough" - ], - "sciTech Review": "mo-joshuacolclough", - "status": "SciTech Review", - "title": "Introducing cache for adjoint lookup tables" - }, - { - "content": { - "number": 151, - "repository": "MetOffice/SimSys_Scripts", - "title": "Revert \"respect gitignore\"", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/151" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivXGk", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "status": "Done", - "title": "Revert \"respect gitignore\"" - }, - { - "content": { - "number": 193, - "repository": "MetOffice/lfric_core", - "title": "Change TM to R", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/193" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivYho", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "Change TM to R" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 152, - "repository": "MetOffice/SimSys_Scripts", - "title": "Rsync exclude", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/152" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivsg8", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "Rsync exclude" - }, - { - "assignees": [ - "tommbendall" - ], - "content": { - "number": 74, - "repository": "MetOffice/lfric_apps", - "title": "Fix Gungho Plots", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/74" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivx3w", - "labels": [ - "bug", - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jameskent-metoffice" - ], - "status": "SciTech Review", - "title": "Fix Gungho Plots" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "andrewcoughtrie", - "content": { - "number": 194, - "repository": "MetOffice/lfric_core", - "title": "Update gitignore", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/194" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiv4t0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "andrewcoughtrie", - "andrewcoughtrie" - ], - "status": "Done", - "title": "Update gitignore" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "andrewcoughtrie", - "content": { - "number": 75, - "repository": "MetOffice/lfric_apps", - "title": "update gitignore", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/75" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiv48M", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "andrewcoughtrie" - ], - "status": "Code Review", - "title": "update gitignore" - }, - { - "content": { - "number": 49, - "repository": "MetOffice/growss", - "title": "Remove label", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/49" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiv-mw", - "repository": "https://github.com/MetOffice/growss", - "status": "Done", - "title": "Remove label" - }, - { - "assignees": [ - "mike-hobson" - ], - "code Review": "svadams ", - "content": { - "number": 198, - "repository": "MetOffice/lfric_core", - "title": "Reusing xt xmap", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/198" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiwo0o", - "labels": [ - "enhancement", - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "MatthewHambley", - "MatthewHambley", - "svadams", - "svadams", - "MatthewHambley" - ], - "sciTech Review": "MatthewHambley", - "status": "Code Review", - "title": "Reusing xt xmap" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 50, - "repository": "MetOffice/growss", - "title": "update cla action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/50" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgixAD8", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "update cla action" - }, - { - "assignees": [ - "r-sharp" - ], - "code Review": "yaswant", - "content": { - "number": 153, - "repository": "MetOffice/SimSys_Scripts", - "title": "Umdp3 checker in python", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/153" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgixAEw", - "labels": [ - "CI", - "git-migration" - ], - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "sciTech Review": "jennyhickson", - "status": "SciTech Review", - "title": "Umdp3 checker in python" - }, - { - "content": { - "number": 107, - "repository": "MetOffice/git_playground", - "title": "Demonstrate cla", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/107" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiyoGc", - "labels": [ - "cla-signed", - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "Done", - "title": "Demonstrate cla" - }, - { - "content": { - "number": 108, - "repository": "MetOffice/git_playground", - "title": "demonstrate edited contributors", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/108" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiypHE", - "labels": [ - "contributor", - "cla-modified" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "demonstrate edited contributors" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 51, - "repository": "MetOffice/growss", - "title": "Update the cla-check ", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/51" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiyp2U", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Changes Requested", - "title": "Update the cla-check " - }, - { - "content": { - "number": 109, - "repository": "MetOffice/git_playground", - "title": "make a change", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/109" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiy1VA", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "make a change" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 110, - "repository": "MetOffice/git_playground", - "title": "Demonstrate from stable", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/110" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiy3Hc", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "In Progress", - "title": "Demonstrate from stable" - }, - { - "assignees": [ - "oakleybrunt", - "MetBenjaminWent" - ], - "content": { - "number": 78, - "repository": "MetOffice/lfric_apps", - "title": "Signed CLA", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/78" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiy3wQ", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "MetBenjaminWent", - "MetBenjaminWent" - ], - "status": "Done", - "title": "Signed CLA" - }, - { - "code Review": "ericaneininger ", - "content": { - "number": 8, - "repository": "MetOffice/gcom", - "title": "7 - Add routines needed for nudging", - "type": "PullRequest", - "url": "https://github.com/MetOffice/gcom/pull/8" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgi4SVA", - "repository": "https://github.com/MetOffice/gcom", - "status": "SciTech Review", - "title": "7 - Add routines needed for nudging" - }, - { - "code Review": "mo-lucy-gordon ", - "content": { - "number": 200, - "repository": "MetOffice/lfric_core", - "title": "new caliper locations from performance indicator 2025", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/200" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDNYg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mike-hobson", - "MatthewHambley", - "mo-lucy-gordon" - ], - "status": "SciTech Review", - "title": "new caliper locations from performance indicator 2025" - }, - { - "assignees": [ - "mo-marqh" - ], - "code Review": "Pierre-siddall ", - "content": { - "number": 79, - "repository": "MetOffice/lfric_apps", - "title": "Time calipers pi25", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/79" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDNp0", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Time calipers pi25" - }, - { - "assignees": [ - "jedbakerMO" - ], - "code Review": "mo-rickywong", - "content": { - "number": 80, - "repository": "MetOffice/lfric_apps", - "title": "Timing Mod wrapper rewrite", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/80" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDOPA", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "christophermaynard", - "mo-rickywong" - ], - "sciTech Review": "christophermaynard", - "status": "Code Review", - "title": "Timing Mod wrapper rewrite" - }, - { - "assignees": [ - "jedbakerMO" - ], - "code Review": "mo-rickywong", - "content": { - "number": 201, - "repository": "MetOffice/lfric_core", - "title": "Timing Mod wrapper rewrite", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/201" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDx7Q", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mo-rickywong", - "christophermaynard" - ], - "status": "SciTech Review", - "title": "Timing Mod wrapper rewrite" - }, - { - "assignees": [ - "harry-shepherd" - ], - "code Review": "t00sa", - "content": { - "number": 82, - "repository": "MetOffice/lfric_apps", - "title": "Performance test config", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/82" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjHS9I", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "harry-shepherd", - "t00sa" - ], - "sciTech Review": "harry-shepherd", - "status": "SciTech Review", - "title": "Performance test config" - }, - { - "assignees": [ - "EdHone" - ], - "code Review": "t00sa", - "content": { - "number": 202, - "repository": "MetOffice/lfric_core", - "title": "Verniered time calipers pi25", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/202" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjHXCo", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "EdHone", - "t00sa" - ], - "sciTech Review": "EdHone", - "status": "SciTech Review", - "title": "Verniered time calipers pi25" - }, - { - "assignees": [ - "oakleybrunt" - ], - "code Review": "cameronbateman-mo", - "content": { - "number": 83, - "repository": "MetOffice/lfric_apps", - "title": "Update UKCA initialisation for dust only to include segment size", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/83" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjNliU", - "labels": [ - "KGO", - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "alanjhewitt", - "cameronbateman-mo" - ], - "sciTech Review": "alanjhewitt", - "status": "Code Review", - "title": "Update UKCA initialisation for dust only to include segment size" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 154, - "repository": "MetOffice/SimSys_Scripts", - "title": "Fix bug with extra whitespace", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/154" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjNmlo", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Fix bug with extra whitespace" - }, - { - "content": { - "number": 203, - "repository": "MetOffice/lfric_core", - "title": "Explicitly take XIOS file frequency attribute definition from the iodef.xml where available", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/203" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjO0QA", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "status": "Done", - "title": "Explicitly take XIOS file frequency attribute definition from the iodef.xml where available" - }, - { - "code Review": "ericaneininger", - "content": { - "number": 204, - "repository": "MetOffice/lfric_core", - "title": "reducing post-processing of XIOS output", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/204" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjSRtQ", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "EdHone" - ], - "sciTech Review": "EdHone", - "status": "SciTech Review", - "title": "reducing post-processing of XIOS output" - }, - { - "code Review": "ericaneininger", - "content": { - "number": 90, - "repository": "MetOffice/lfric_apps", - "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/90" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjSRt8", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "EdHone" - ], - "sciTech Review": "EdHone", - "status": "SciTech Review", - "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 52, - "repository": "MetOffice/growss", - "title": "Action to move PRs through project state", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/52" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVJNs", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant", - "jennyhickson", - "t00sa" - ], - "sciTech Review": "yaswant", - "status": "Code Review", - "title": "Action to move PRs through project state" - }, - { - "assignees": [ - "alanjhewitt" - ], - "code Review": "cameronbateman-mo", - "content": { - "number": 94, - "repository": "MetOffice/lfric_apps", - "title": "Bug in AOD diagnostics", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/94" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVKD8", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "melissaebrooks", - "cameronbateman-mo" - ], - "sciTech Review": "melissaebrooks", - "status": "Code Review", - "title": "Bug in AOD diagnostics" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 95, - "repository": "MetOffice/lfric_apps", - "title": "extract_science.py rebuild fix", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/95" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVbnk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo" - ], - "status": "SciTech Review", - "title": "extract_science.py rebuild fix" - }, - { - "assignees": [ - "jennyhickson" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 155, - "repository": "MetOffice/SimSys_Scripts", - "title": "Milestone manager", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/155" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVcPM", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "yaswant", - "james-bruten-mo" - ], - "sciTech Review": "yaswant", - "status": "Code Review", - "title": "Milestone manager" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 53, - "repository": "MetOffice/growss", - "title": "Project edit action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/53" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjV2Cw", - "repository": "https://github.com/MetOffice/growss", - "status": "Done", - "title": "Project edit action" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 111, - "repository": "MetOffice/git_playground", - "title": "test review project action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/111" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjWKiM", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "yaswant", - "jennyhickson", - "yaswant" - ], - "sciTech Review": "jennyhickson", - "status": "Done", - "title": "test review project action" - }, - { - "assignees": [ - "Pierre-siddall" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 158, - "repository": "MetOffice/SimSys_Scripts", - "title": "Fix suite report", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/158" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYe2E", - "labels": [ - "enhancement" - ], - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Changes Requested", - "title": "Fix suite report" - }, - { - "code Review": "Pierre-siddall", - "content": { - "number": 96, - "repository": "MetOffice/lfric_apps", - "title": "Add Harry Shepherd to CONTRIBUTORS.md", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/96" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYo8E", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "Pierre-siddall" - ], - "status": "Done", - "title": "Add Harry Shepherd to CONTRIBUTORS.md" - }, - { - "code Review": "Pierre-siddall", - "content": { - "number": 207, - "repository": "MetOffice/lfric_core", - "title": "Add Harry Shepherd to CONTRIBUTORS.md", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/207" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYpJY", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "Pierre-siddall" - ], - "status": "Done", - "title": "Add Harry Shepherd to CONTRIBUTORS.md" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 55, - "repository": "MetOffice/growss", - "title": "make grep case insensitive", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/55" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYzSk", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "make grep case insensitive" - }, - { - "content": { - "number": 98, - "repository": "MetOffice/lfric_apps", - "title": "S20 Diags: geopot thickness", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/98" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZLG0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "S20 Diags: geopot thickness" - }, - { - "code Review": "ericaneininger", - "content": { - "number": 99, - "repository": "MetOffice/lfric_apps", - "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/99" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZbG8", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "ericaneininger", - "MetBenjaminWent" - ], - "sciTech Review": "MetBenjaminWent", - "status": "Code Review", - "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel" - }, - { - "content": { - "number": 101, - "repository": "MetOffice/lfric_apps", - "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/101" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZkl0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 112, - "repository": "MetOffice/git_playground", - "title": "Project Update Action Test 2", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/112" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZxzc", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "yaswant", - "jennyhickson", - "jennyhickson" - ], - "sciTech Review": "yaswant", - "status": "Done", - "title": "Project Update Action Test 2" - }, - { - "code Review": "mike-hobson ", - "content": { - "number": 208, - "repository": "MetOffice/lfric_core", - "title": "Remove references to FCM following Git migration", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/208" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZ1xU", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mike-hobson", - "mike-hobson" - ], - "status": "Done", - "title": "Remove references to FCM following Git migration" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "Pierre-siddall", - "content": { - "number": 102, - "repository": "MetOffice/lfric_apps", - "title": "update symlink", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/102" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjb0M0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "yaswant", - "Pierre-siddall" - ], - "status": "Done", - "title": "update symlink" - }, - { - "code Review": "@MatthewHambley", - "content": { - "number": 210, - "repository": "MetOffice/lfric_core", - "title": "Remove additional leading space from make message calls", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/210" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjcOBI", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "stevemullerworth", - "MatthewHambley" - ], - "status": "Done", - "title": "Remove additional leading space from make message calls" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "andrewcoughtrie", - "content": { - "number": 211, - "repository": "MetOffice/lfric_core", - "title": "Reformat pull request template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/211" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjc3Vk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "andrewcoughtrie" - ], - "status": "Code Review", - "title": "Reformat pull request template" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 109, - "repository": "MetOffice/lfric_apps", - "title": "Reformat pull request template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/109" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjdFRk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Reformat pull request template" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 550, - "repository": "MetOffice/simulation-systems", - "title": "Rework support request section", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/550" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjh2xU", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Rework support request section" - }, - { - "content": { - "number": 212, - "repository": "MetOffice/lfric_core", - "title": "Take XIOS file frequency configuration from iodef.xml where possible", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/212" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjh81A", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "status": "SciTech Review", - "title": "Take XIOS file frequency configuration from iodef.xml where possible" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 159, - "repository": "MetOffice/SimSys_Scripts", - "title": "Remove hardcoded review team", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/159" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjh9IU", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Remove hardcoded review team" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 117, - "repository": "MetOffice/lfric_apps", - "title": "Add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/117" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjild0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "Add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 27, - "repository": "MetOffice/jules", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/jules/pull/27" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjimwE", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/jules", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 214, - "repository": "MetOffice/lfric_core", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/214" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjingc", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant", - "andrewcoughtrie", - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 15, - "repository": "MetOffice/mule", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/mule/pull/15" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjipwA", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/mule", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 17, - "repository": "MetOffice/shumlib", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/shumlib/pull/17" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjiqFE", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/shumlib", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 160, - "repository": "MetOffice/SimSys_Scripts", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/160" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjir5A", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 551, - "repository": "MetOffice/simulation-systems", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/551" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjitHE", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 21, - "repository": "MetOffice/um", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um/pull/21" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjithY", - "repository": "https://github.com/MetOffice/um", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 10, - "repository": "MetOffice/um_doc", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um_doc/pull/10" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjit60", - "repository": "https://github.com/MetOffice/um_doc", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 7, - "repository": "MetOffice/casim", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/casim/pull/7" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjiwcY", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/casim", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 11, - "repository": "MetOffice/socrates", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/socrates/pull/11" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjiw9s", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/socrates", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 4, - "repository": "MetOffice/socrates-spectral", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/socrates-spectral/pull/4" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjixqk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/socrates-spectral", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 2, - "repository": "MetOffice/um_aux", - "title": "Add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um_aux/pull/2" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjizd0", - "repository": "https://github.com/MetOffice/um_aux", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "Add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 9, - "repository": "MetOffice/moci", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/moci/pull/9" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgji1pg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/moci", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 9, - "repository": "MetOffice/gcom", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/gcom/pull/9" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgji2FI", - "repository": "https://github.com/MetOffice/gcom", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "@james-bruten-mo", - "content": { - "number": 161, - "repository": "MetOffice/SimSys_Scripts", - "title": "update superlinter", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/161" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjj2vY", - "labels": [ - "CI" - ], - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo", - "james-bruten-mo" - ], - "status": "Done", - "title": "update superlinter" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "t00sa", - "content": { - "number": 113, - "repository": "MetOffice/git_playground", - "title": "Test review project action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/113" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjlI24", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "Test review project action" - }, - { - "assignees": [ - "t00sa" - ], - "code Review": "Pierre-siddall", - "content": { - "number": 537, - "repository": "MetOffice/fab", - "title": "Fix a trivial CUI argument handling bug", - "type": "PullRequest", - "url": "https://github.com/MetOffice/fab/pull/537" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjlJJk", - "repository": "https://github.com/MetOffice/fab", - "reviewers": [ - "Pierre-siddall" - ], - "status": "Done", - "title": "Fix a trivial CUI argument handling bug" - }, - { - "content": { - "number": 22, - "repository": "MetOffice/um", - "title": "Gm consolidate nudging", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um/pull/22" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjlVRc", - "repository": "https://github.com/MetOffice/um", - "status": "SciTech Review", - "title": "Gm consolidate nudging" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 162, - "repository": "MetOffice/SimSys_Scripts", - "title": "bump timeout", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/162" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjmHNM", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "bump timeout" - }, - { - "content": { - "number": 120, - "repository": "MetOffice/lfric_apps", - "title": "S20 Diags: snow prob", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/120" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjmOns", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "S20 Diags: snow prob" - } - ], - "totalCount": 131 -} + "items": [ + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 9, + "repository": "MetOffice/gcom", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/gcom/pull/9" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgji2FI", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/gcom", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 9, + "repository": "MetOffice/moci", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/9" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgji1pg", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/moci", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 2, + "repository": "MetOffice/um_aux", + "title": "Add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um_aux/pull/2" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjizd0", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um_aux", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 11, + "repository": "MetOffice/socrates", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/11" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjiw9s", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 7, + "repository": "MetOffice/casim", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/casim/pull/7" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjiwcY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/casim", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 10, + "repository": "MetOffice/um_doc", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um_doc/pull/10" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjit60", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um_doc", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 21, + "repository": "MetOffice/um", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/21" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjithY", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 160, + "repository": "MetOffice/SimSys_Scripts", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/160" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjir5A", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 17, + "repository": "MetOffice/shumlib", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/shumlib/pull/17" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjiqFE", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/shumlib", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 15, + "repository": "MetOffice/mule", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/mule/pull/15" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjipwA", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/mule", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 27, + "repository": "MetOffice/jules", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/27" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjimwE", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 4, + "repository": "MetOffice/socrates-spectral", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates-spectral/pull/4" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjixqk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates-spectral", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 551, + "repository": "MetOffice/simulation-systems", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/551" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjitHE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "yaswant", + "james-bruten-mo", + "cameronbateman-mo" + ], + "content": { + "number": 72, + "repository": "MetOffice/git_playground", + "title": "added python script and github workflow for auto assigning pr reviewers", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/72" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgfbFi4", + "repository": "https://github.com/MetOffice/git_playground", + "reviewers": [ + "james-bruten-mo", + "yaswant" + ], + "sciTech Review": "james-bruten-mo", + "status": "SciTech Review", + "title": "added python script and github workflow for auto assigning pr reviewers" + }, + { + "assignees": [ + "r-sharp", + "cameronbateman-mo" + ], + "content": { + "number": 104, + "repository": "MetOffice/SimSys_Scripts", + "title": "added bash script to automate jules kgo process.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/104" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzge8FcQ", + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "r-sharp", + "ericaneininger" + ], + "status": "SciTech Review", + "title": "added bash script to automate jules kgo process." + }, + { + "assignees": [ + "yaswant", + "cameronbateman-mo" + ], + "content": { + "number": 55, + "repository": "MetOffice/git_playground", + "title": "added auto PR assigner", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/55" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgerEIU", + "repository": "https://github.com/MetOffice/git_playground", + "status": "Code Review", + "title": "added auto PR assigner" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 27, + "repository": "MetOffice/growss", + "title": "Optimise validation action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/27" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghMYH0", + "labels": [ + "CI" + ], + "repository": "https://github.com/MetOffice/growss", + "status": "SciTech Review", + "title": "Optimise validation action" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 99, + "repository": "MetOffice/git_playground", + "title": "Demo growss build/deploy workflows", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/99" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghQCy4", + "labels": [ + "cla-required" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "SciTech Review", + "title": "Demo growss build/deploy workflows" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 101, + "repository": "MetOffice/git_playground", + "title": "Test fortran linter", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/101" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghY6mc", + "labels": [ + "enhancement", + "cla-signed", + "CI", + "contributor" + ], + "repository": "https://github.com/MetOffice/git_playground", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Code Review", + "title": "Test fortran linter" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 500, + "repository": "MetOffice/simulation-systems", + "title": "Use reusable workflow to build and deploy sphinx docs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/500" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghhhQo", + "labels": [ + ":blue_book:Documentation" + ], + "repository": "https://github.com/MetOffice/simulation-systems", + "status": "SciTech Review", + "title": "Use reusable workflow to build and deploy sphinx docs" + }, + { + "assignees": [ + "dcaseGH" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 15, + "repository": "MetOffice/jules", + "title": "JASMIN site migration for JULES - git", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/15" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiM9qU", + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "SciTech Review", + "title": "JASMIN site migration for JULES - git" + }, + { + "assignees": [ + "mo-rickywong" + ], + "code Review": "MatthewHambley", + "content": { + "number": 175, + "repository": "MetOffice/lfric_core", + "title": "Reworked Configuration Namelist Access API", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/175" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiZyxI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth", + "mike-hobson", + "andrewcoughtrie", + "EdHone", + "MatthewHambley", + "allynt", + "MatthewHambley" + ], + "sciTech Review": "allynt", + "status": "Done", + "title": "Reworked Configuration Namelist Access API" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 529, + "repository": "MetOffice/simulation-systems", + "title": "Add GitHub Copilot instructions", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/529" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgieVuU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Add GitHub Copilot instructions" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "jennyhickson", + "content": { + "number": 530, + "repository": "MetOffice/simulation-systems", + "title": "Local deploy config", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/530" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiebbQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson", + "jennyhickson" + ], + "status": "Done", + "title": "Local deploy config" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 531, + "repository": "MetOffice/simulation-systems", + "title": "update um release instructions", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/531" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgifuu8", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson", + "jennyhickson" + ], + "status": "Done", + "title": "update um release instructions" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 146, + "repository": "MetOffice/SimSys_Scripts", + "title": "switch rsyncs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/146" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgifv8c", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "switch rsyncs" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 147, + "repository": "MetOffice/SimSys_Scripts", + "title": "Workload debug", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/147" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgigYaI", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Workload debug" + }, + { + "content": { + "number": 182, + "repository": "MetOffice/lfric_core", + "title": "Codeowners update", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/182" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgigxXk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mike-hobson" + ], + "status": "Done", + "title": "Codeowners update" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 43, + "repository": "MetOffice/lfric_apps", + "title": "fix local build script", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/43" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgig0XM", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "fix local build script" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 46, + "repository": "MetOffice/growss", + "title": "remove labelling when cla already signed on base", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/46" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgilBmY", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "remove labelling when cla already signed on base" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 534, + "repository": "MetOffice/simulation-systems", + "title": "SSH Passphrase Advice", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/534" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgilIpg", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "SSH Passphrase Advice" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 14, + "repository": "MetOffice/mule", + "title": "add shumlib testing", + "type": "PullRequest", + "url": "https://github.com/MetOffice/mule/pull/14" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgilpZg", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/mule", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "add shumlib testing" + }, + { + "content": { + "number": 185, + "repository": "MetOffice/lfric_core", + "title": "Add some words about the reason for testing", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/185" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgimF7A", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "allynt", + "allynt" + ], + "status": "Done", + "title": "Add some words about the reason for testing" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 148, + "repository": "MetOffice/SimSys_Scripts", + "title": "check_macro_chains to fail gracefully on FCM", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/148" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgimes0", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "check_macro_chains to fail gracefully on FCM" + }, + { + "assignees": [ + "tinyendian" + ], + "code Review": "EdHone", + "content": { + "number": 53, + "repository": "MetOffice/lfric_apps", + "title": "Additional PC2 optimisations for NG-ARCH", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/53" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgioBpQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "MetBenjaminWent" + ], + "sciTech Review": "MetBenjaminWent", + "status": "Changes Requested", + "title": "Additional PC2 optimisations for NG-ARCH" + }, + { + "assignees": [ + "mo-lottieturner" + ], + "code Review": "mo-alistairp", + "content": { + "number": 54, + "repository": "MetOffice/lfric_apps", + "title": "Removing populate_graph_lfricinputs.cylc", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/54" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipEyc", + "labels": [ + "cla-signed", + "LFRic Inputs" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo", + "mo-alistairp", + "mo-alistairp" + ], + "sciTech Review": "james-bruten-mo", + "status": "Done", + "title": "Removing populate_graph_lfricinputs.cylc" + }, + { + "assignees": [ + "ukmo-juan-castillo" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 55, + "repository": "MetOffice/lfric_apps", + "title": "Generation of lfric2lfric lbcs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/55" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipHzg", + "labels": [ + "cla-signed", + "LFRic Inputs" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mike-hobson", + "mike-hobson", + "mo-lottieturner", + "mo-lottieturner" + ], + "sciTech Review": "mike-hobson", + "status": "Code Review", + "title": "Generation of lfric2lfric lbcs" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 56, + "repository": "MetOffice/lfric_apps", + "title": "Transmute explicit no Transformation list and global.py", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/56" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipIv4", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "oakleybrunt", + "oakleybrunt", + "mo-lottieturner" + ], + "sciTech Review": "oakleybrunt", + "status": "Approved", + "title": "Transmute explicit no Transformation list and global.py" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 57, + "repository": "MetOffice/lfric_apps", + "title": "Some of Boundary Layer PSyclone-d", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/57" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipJBQ", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jcsmeto", + "mo-lucy-gordon", + "christophermaynard", + "mo-lucy-gordon" + ], + "sciTech Review": "jcsmeto", + "status": "Approved", + "title": "Some of Boundary Layer PSyclone-d" + }, + { + "code Review": "yaswant", + "content": { + "number": 537, + "repository": "MetOffice/simulation-systems", + "title": "add new FAQs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/537" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipTjc", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "add new FAQs" + }, + { + "assignees": [ + "mo-lottieturner" + ], + "code Review": "allynt", + "content": { + "number": 187, + "repository": "MetOffice/lfric_core", + "title": "Adding logging to tweak_iodef", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/187" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgip0Is", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "status": "SciTech Review", + "title": "Adding logging to tweak_iodef" + }, + { + "content": { + "number": 188, + "repository": "MetOffice/lfric_core", + "title": "Update root Readme file.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/188" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgip2Q0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant", + "mike-hobson" + ], + "status": "Done", + "title": "Update root Readme file." + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "content": { + "number": 62, + "repository": "MetOffice/lfric_apps", + "title": "Boundary Layer - bdy_expl2 optimisations", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/62" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqBQo", + "labels": [ + "cla-required" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "SciTech Review", + "title": "Boundary Layer - bdy_expl2 optimisations" + }, + { + "content": { + "number": 63, + "repository": "MetOffice/lfric_apps", + "title": "Remove user contact question from issue template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/63" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqEBU", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Remove user contact question from issue template" + }, + { + "content": { + "number": 189, + "repository": "MetOffice/lfric_core", + "title": "Remove contact details from Issue template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/189" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqGFo", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "Remove contact details from Issue template" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "stevemullerworth", + "content": { + "number": 190, + "repository": "MetOffice/lfric_core", + "title": "Fixed duplication of directory ownership, should have been a differen\u2026", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/190" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqVsY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant", + "stevemullerworth" + ], + "sciTech Review": "yaswant", + "status": "Done", + "title": "Fixed duplication of directory ownership, should have been a differen\u2026" + }, + { + "assignees": [ + "jasonjunweilyu" + ], + "code Review": "MetBenjaminWent", + "content": { + "number": 65, + "repository": "MetOffice/lfric_apps", + "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/65" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiroos", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-alistairp", + "mo-alistairp", + "MetBenjaminWent", + "MetBenjaminWent", + "MetBenjaminWent" + ], + "sciTech Review": "mo-alistairp", + "status": "Done", + "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH" + }, + { + "code Review": "mo-rickywong", + "content": { + "number": 191, + "repository": "MetOffice/lfric_core", + "title": "Fail gracefully if the configuration namelist doesn't exist", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/191" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgisRIQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "stevemullerworth", + "andrewcoughtrie", + "mo-rickywong", + "EdHone", + "MatthewHambley", + "MatthewHambley" + ], + "sciTech Review": "andrewcoughtrie", + "status": "Done", + "title": "Fail gracefully if the configuration namelist doesn't exist" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 47, + "repository": "MetOffice/growss", + "title": "Remove label", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/47" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgisU60", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "andrewcoughtrie" + ], + "status": "Done", + "title": "Remove label" + }, + { + "content": { + "number": 48, + "repository": "MetOffice/growss", + "title": "Remove label", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/48" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgisl4Y", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "status": "Done", + "title": "Remove label" + }, + { + "code Review": "mo-rickywong", + "content": { + "number": 67, + "repository": "MetOffice/lfric_apps", + "title": "Check config name", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/67" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgis7KA", + "labels": [ + "enhancement", + "Linked Core", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-rickywong" + ], + "sciTech Review": "andrewcoughtrie", + "status": "Done", + "title": "Check config name" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 149, + "repository": "MetOffice/SimSys_Scripts", + "title": "update to use bash -l", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/149" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgis_zo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "update to use bash -l" + }, + { + "content": { + "number": 22, + "repository": "MetOffice/jules", + "title": "Coupling of WHAM! model of human fire use and management with INFERNO", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/22" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitYHw", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "status": "SciTech Review", + "title": "Coupling of WHAM! model of human fire use and management with INFERNO" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 540, + "repository": "MetOffice/simulation-systems", + "title": "add note to enable stable", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/540" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitc0Q", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add note to enable stable" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 69, + "repository": "MetOffice/lfric_apps", + "title": "Correct the sample_physics_winds_correction option", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/69" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitsto", + "labels": [ + "bug", + "Linked Core", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "atb1995", + "allynt" + ], + "sciTech Review": "atb1995", + "status": "Code Review", + "title": "Correct the sample_physics_winds_correction option" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 150, + "repository": "MetOffice/SimSys_Scripts", + "title": "respect gitignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/150" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitymk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "respect gitignore" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "MatthewHambley", + "content": { + "number": 2, + "repository": "MetOffice/rose_picker", + "title": "Tidy up repo and add checks", + "type": "PullRequest", + "url": "https://github.com/MetOffice/rose_picker/pull/2" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiuLSs", + "labels": [ + "enhancement" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/rose_picker", + "reviewers": [ + "MatthewHambley", + "MatthewHambley", + "james-bruten-mo", + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Done", + "title": "Tidy up repo and add checks" + }, + { + "assignees": [ + "DrTVockerodtMO" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 71, + "repository": "MetOffice/lfric_apps", + "title": "Fixing adjoint failures with transport log_space config variable set to true", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/71" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiuvmk", + "labels": [ + "bug", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "allynt", + "tom-j-h" + ], + "sciTech Review": "tom-j-h", + "status": "Done", + "title": "Fixing adjoint failures with transport log_space config variable set to true" + }, + { + "assignees": [ + "DrTVockerodtMO" + ], + "code Review": "harry-shepherd", + "content": { + "number": 72, + "repository": "MetOffice/lfric_apps", + "title": "Introducing cache for adjoint lookup tables", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/72" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiuzc0", + "labels": [ + "enhancement", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "harry-shepherd", + "mo-joshuacolclough" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Done", + "title": "Introducing cache for adjoint lookup tables" + }, + { + "content": { + "number": 151, + "repository": "MetOffice/SimSys_Scripts", + "title": "Revert \"respect gitignore\"", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/151" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivXGk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "status": "Done", + "title": "Revert \"respect gitignore\"" + }, + { + "content": { + "number": 193, + "repository": "MetOffice/lfric_core", + "title": "Change TM to R", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/193" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivYho", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "Change TM to R" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 152, + "repository": "MetOffice/SimSys_Scripts", + "title": "Rsync exclude", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/152" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivsg8", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "Rsync exclude" + }, + { + "assignees": [ + "tommbendall", + "mo-marqh" + ], + "code Review": "mo-marqh", + "content": { + "number": 74, + "repository": "MetOffice/lfric_apps", + "title": "Fix Gungho Plots", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/74" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivx3w", + "labels": [ + "bug", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-marqh", + "mo-marqh", + "mo-marqh" + ], + "status": "Done", + "title": "Fix Gungho Plots" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 194, + "repository": "MetOffice/lfric_core", + "title": "Update gitignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/194" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiv4t0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie", + "andrewcoughtrie" + ], + "status": "Done", + "title": "Update gitignore" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 75, + "repository": "MetOffice/lfric_apps", + "title": "update gitignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/75" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiv48M", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "update gitignore" + }, + { + "content": { + "number": 49, + "repository": "MetOffice/growss", + "title": "Remove label", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/49" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiv-mw", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "status": "Done", + "title": "Remove label" + }, + { + "assignees": [ + "mike-hobson" + ], + "code Review": "svadams ", + "content": { + "number": 198, + "repository": "MetOffice/lfric_core", + "title": "Reusing xt xmap", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/198" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiwo0o", + "labels": [ + "enhancement", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "MatthewHambley", + "svadams", + "svadams", + "MatthewHambley" + ], + "sciTech Review": "MatthewHambley", + "status": "Done", + "title": "Reusing xt xmap" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 50, + "repository": "MetOffice/growss", + "title": "update cla action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/50" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgixAD8", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "update cla action" + }, + { + "assignees": [ + "r-sharp" + ], + "code Review": "yaswant", + "content": { + "number": 153, + "repository": "MetOffice/SimSys_Scripts", + "title": "Umdp3 checker in python", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/153" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgixAEw", + "labels": [ + "CI", + "git-migration" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson", + "jennyhickson", + "yaswant" + ], + "sciTech Review": "jennyhickson", + "status": "Done", + "title": "Umdp3 checker in python" + }, + { + "content": { + "number": 107, + "repository": "MetOffice/git_playground", + "title": "Demonstrate cla", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/107" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiyoGc", + "labels": [ + "cla-signed", + "contributor" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/git_playground", + "status": "Done", + "title": "Demonstrate cla" + }, + { + "content": { + "number": 108, + "repository": "MetOffice/git_playground", + "title": "demonstrate edited contributors", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/108" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiypHE", + "labels": [ + "contributor" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "SciTech Review", + "title": "demonstrate edited contributors" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 51, + "repository": "MetOffice/growss", + "title": "Update the cla-check ", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/51" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiyp2U", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Update the cla-check " + }, + { + "assignees": [ + "oakleybrunt", + "MetBenjaminWent" + ], + "content": { + "number": 78, + "repository": "MetOffice/lfric_apps", + "title": "Signed CLA", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/78" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiy3wQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "MetBenjaminWent", + "MetBenjaminWent" + ], + "status": "Done", + "title": "Signed CLA" + }, + { + "assignees": [ + "mo-andymalcolm", + "mo-saracusworth" + ], + "code Review": "ericaneininger", + "content": { + "number": 8, + "repository": "MetOffice/gcom", + "title": "7 - Add routines needed for nudging", + "type": "PullRequest", + "url": "https://github.com/MetOffice/gcom/pull/8" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgi4SVA", + "repository": "https://github.com/MetOffice/gcom", + "reviewers": [ + "ericaneininger", + "mo-saracusworth" + ], + "sciTech Review": "mo-saracusworth", + "status": "SciTech Review", + "title": "7 - Add routines needed for nudging" + }, + { + "assignees": [ + "jedbakerMO" + ], + "code Review": "mo-rickywong", + "content": { + "number": 80, + "repository": "MetOffice/lfric_apps", + "title": "Timing Mod wrapper rewrite", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/80" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjDOPA", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "christophermaynard", + "mo-rickywong", + "mo-rickywong" + ], + "sciTech Review": "christophermaynard", + "status": "Done", + "title": "Timing Mod wrapper rewrite" + }, + { + "assignees": [ + "jedbakerMO" + ], + "code Review": "mo-rickywong", + "content": { + "number": 201, + "repository": "MetOffice/lfric_core", + "title": "Timing Mod wrapper rewrite", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/201" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjDx7Q", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "christophermaynard" + ], + "sciTech Review": "christophermaynard", + "status": "Done", + "title": "Timing Mod wrapper rewrite" + }, + { + "assignees": [ + "t00sa" + ], + "code Review": "t00sa", + "content": { + "number": 82, + "repository": "MetOffice/lfric_apps", + "title": "Performance test config", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/82" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjHS9I", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "harry-shepherd", + "t00sa" + ], + "sciTech Review": "harry-shepherd", + "status": "Done", + "title": "Performance test config" + }, + { + "assignees": [ + "oakleybrunt" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 83, + "repository": "MetOffice/lfric_apps", + "title": "Update UKCA initialisation for dust only to include segment size", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/83" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjNliU", + "labels": [ + "KGO", + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "alanjhewitt", + "cameronbateman-mo" + ], + "sciTech Review": "alanjhewitt", + "status": "Done", + "title": "Update UKCA initialisation for dust only to include segment size" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 154, + "repository": "MetOffice/SimSys_Scripts", + "title": "Fix bug with extra whitespace", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/154" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjNmlo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Fix bug with extra whitespace" + }, + { + "code Review": "ericaneininger", + "content": { + "number": 204, + "repository": "MetOffice/lfric_core", + "title": "reducing post-processing of XIOS output", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/204" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjSRtQ", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "EdHone" + ], + "sciTech Review": "EdHone", + "status": "Changes Requested", + "title": "reducing post-processing of XIOS output" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "ericaneininger", + "content": { + "number": 90, + "repository": "MetOffice/lfric_apps", + "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/90" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjSRt8", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "EdHone" + ], + "sciTech Review": "EdHone", + "status": "Changes Requested", + "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 52, + "repository": "MetOffice/growss", + "title": "Action to move PRs through project state", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/52" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjVJNs", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "jennyhickson", + "t00sa" + ], + "sciTech Review": "yaswant", + "status": "Done", + "title": "Action to move PRs through project state" + }, + { + "assignees": [ + "alanjhewitt" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 94, + "repository": "MetOffice/lfric_apps", + "title": "Bug in AOD diagnostics", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/94" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjVKD8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "melissaebrooks", + "cameronbateman-mo" + ], + "sciTech Review": "melissaebrooks", + "status": "Done", + "title": "Bug in AOD diagnostics" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 155, + "repository": "MetOffice/SimSys_Scripts", + "title": "Milestone manager", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/155" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjVcPM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "yaswant", + "james-bruten-mo" + ], + "sciTech Review": "yaswant", + "status": "Done", + "title": "Milestone manager" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 53, + "repository": "MetOffice/growss", + "title": "Project edit action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/53" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjV2Cw", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "status": "Done", + "title": "Project edit action" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 158, + "repository": "MetOffice/SimSys_Scripts", + "title": "Fix suite report", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/158" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYe2E", + "labels": [ + "enhancement" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo", + "james-bruten-mo", + "james-bruten-mo" + ], + "status": "Done", + "title": "Fix suite report" + }, + { + "code Review": "Pierre-siddall", + "content": { + "number": 96, + "repository": "MetOffice/lfric_apps", + "title": "Add Harry Shepherd to CONTRIBUTORS.md", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/96" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYo8E", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Pierre-siddall" + ], + "status": "Done", + "title": "Add Harry Shepherd to CONTRIBUTORS.md" + }, + { + "code Review": "Pierre-siddall", + "content": { + "number": 207, + "repository": "MetOffice/lfric_core", + "title": "Add Harry Shepherd to CONTRIBUTORS.md", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/207" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYpJY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "Pierre-siddall" + ], + "status": "Done", + "title": "Add Harry Shepherd to CONTRIBUTORS.md" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 55, + "repository": "MetOffice/growss", + "title": "make grep case insensitive", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/55" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYzSk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "make grep case insensitive" + }, + { + "assignees": [ + "bblay-mo" + ], + "content": { + "number": 98, + "repository": "MetOffice/lfric_apps", + "title": "S20 Diags: geopot thickness", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/98" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZLG0", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "S20 Diags: geopot thickness" + }, + { + "assignees": [ + "ricky-lv426" + ], + "code Review": "ericaneininger", + "content": { + "number": 99, + "repository": "MetOffice/lfric_apps", + "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/99" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZbG8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "ericaneininger", + "MetBenjaminWent", + "ericaneininger" + ], + "sciTech Review": "MetBenjaminWent", + "status": "Done", + "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel" + }, + { + "assignees": [ + "Adrian-Lock" + ], + "code Review": "ericaneininger", + "content": { + "number": 101, + "repository": "MetOffice/lfric_apps", + "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/101" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZkl0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "P-Burns", + "ericaneininger" + ], + "sciTech Review": "P-Burns", + "status": "Code Review", + "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future" + }, + { + "code Review": "mike-hobson ", + "content": { + "number": 208, + "repository": "MetOffice/lfric_core", + "title": "Remove references to FCM following Git migration", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/208" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZ1xU", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mike-hobson", + "mike-hobson" + ], + "status": "Done", + "title": "Remove references to FCM following Git migration" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 102, + "repository": "MetOffice/lfric_apps", + "title": "update symlink", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/102" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjb0M0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Pierre-siddall", + "yaswant" + ], + "status": "Done", + "title": "update symlink" + }, + { + "code Review": "@MatthewHambley", + "content": { + "number": 210, + "repository": "MetOffice/lfric_core", + "title": "Remove additional leading space from make message calls", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/210" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjcOBI", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth" + ], + "status": "Done", + "title": "Remove additional leading space from make message calls" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 211, + "repository": "MetOffice/lfric_core", + "title": "Reformat pull request template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/211" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjc3Vk", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie", + "andrewcoughtrie", + "andrewcoughtrie" + ], + "status": "Done", + "title": "Reformat pull request template" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 109, + "repository": "MetOffice/lfric_apps", + "title": "Reformat pull request template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/109" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjdFRk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Reformat pull request template" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 550, + "repository": "MetOffice/simulation-systems", + "title": "Rework support request section", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/550" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjh2xU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Rework support request section" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "MatthewHambley", + "content": { + "number": 212, + "repository": "MetOffice/lfric_core", + "title": "Take XIOS file frequency configuration from iodef.xml where possible", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/212" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjh81A", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "svadams", + "MatthewHambley", + "stevemullerworth", + "mike-hobson", + "andrewcoughtrie", + "mo-rickywong", + "yaswant" + ], + "sciTech Review": "svadams", + "status": "Code Review", + "title": "Take XIOS file frequency configuration from iodef.xml where possible" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 159, + "repository": "MetOffice/SimSys_Scripts", + "title": "Remove hardcoded review team", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/159" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjh9IU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Remove hardcoded review team" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 117, + "repository": "MetOffice/lfric_apps", + "title": "Add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/117" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjild0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 214, + "repository": "MetOffice/lfric_core", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/214" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjingc", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "jennyhickson", + "andrewcoughtrie", + "yaswant" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "@james-bruten-mo", + "content": { + "number": 161, + "repository": "MetOffice/SimSys_Scripts", + "title": "update superlinter", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/161" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjj2vY", + "labels": [ + "CI" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo", + "james-bruten-mo" + ], + "status": "Done", + "title": "update superlinter" + }, + { + "content": { + "number": 22, + "repository": "MetOffice/um", + "title": "Gm consolidate nudging", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/22" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjlVRc", + "repository": "https://github.com/MetOffice/um", + "status": "SciTech Review", + "title": "Gm consolidate nudging" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "ericaneininger", + "content": { + "number": 162, + "repository": "MetOffice/SimSys_Scripts", + "title": "bump timeout", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/162" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjmHNM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "ericaneininger" + ], + "status": "Done", + "title": "bump timeout" + }, + { + "assignees": [ + "bblay-mo" + ], + "content": { + "number": 120, + "repository": "MetOffice/lfric_apps", + "title": "S20 Diags: snow prob", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/120" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjmOns", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "S20 Diags: snow prob" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "yaswant", + "content": { + "number": 163, + "repository": "MetOffice/SimSys_Scripts", + "title": "new test file", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/163" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjm_lw", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "new test file" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 122, + "repository": "MetOffice/lfric_apps", + "title": "raise error successfully from extract_source", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/122" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpNyM", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "t00sa", + "jennyhickson" + ], + "sciTech Review": "t00sa", + "status": "Done", + "title": "raise error successfully from extract_source" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "TeranIvy", + "content": { + "number": 123, + "repository": "MetOffice/lfric_apps", + "title": "Align `adjoint_tests` to `linear_model`", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/123" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpdoY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "DrTVockerodtMO", + "DrTVockerodtMO", + "TeranIvy", + "TeranIvy", + "TeranIvy" + ], + "sciTech Review": "DrTVockerodtMO", + "status": "Done", + "title": "Align `adjoint_tests` to `linear_model`" + }, + { + "content": { + "number": 131, + "repository": "MetOffice/lfric_apps", + "title": "Hotfix to rose-stem suite", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/131" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjprHs", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Hotfix to rose-stem suite" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "stevemullerworth", + "content": { + "number": 132, + "repository": "MetOffice/lfric_apps", + "title": "jelf adjoint test tolerance namelist variable", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/132" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpu_0", + "labels": [ + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "stevemullerworth", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "jelf adjoint test tolerance namelist variable" + }, + { + "assignees": [ + "mcdalvi" + ], + "code Review": "oakleybrunt", + "content": { + "number": 133, + "repository": "MetOffice/lfric_apps", + "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/133" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpvvY", + "labels": [ + "bug", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "oakleybrunt" + ], + "sciTech Review": "alanjhewitt", + "status": "Done", + "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`" + }, + { + "assignees": [ + "mo-lucy-gordon" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 217, + "repository": "MetOffice/lfric_core", + "title": "Adding fortitude", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/217" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqGao", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Adding fortitude" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 555, + "repository": "MetOffice/simulation-systems", + "title": "hotfix release notes", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/555" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqllE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "hotfix release notes" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 218, + "repository": "MetOffice/lfric_core", + "title": "Small fixes to better enable running with XIOS 3", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/218" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqqfo", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-marqh", + "mo-lottieturner", + "MatthewHambley", + "stevemullerworth", + "mike-hobson", + "andrewcoughtrie", + "mo-rickywong", + "yaswant" + ], + "sciTech Review": "mo-marqh", + "status": "Done", + "title": "Small fixes to better enable running with XIOS 3" + }, + { + "assignees": [ + "mo-andymalcolm" + ], + "code Review": "r-sharp", + "content": { + "number": 24, + "repository": "MetOffice/um", + "title": "Climate diags opt omp", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/24" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqsQ8", + "repository": "https://github.com/MetOffice/um", + "status": "SciTech Review", + "title": "Climate diags opt omp" + }, + { + "assignees": [ + "mo-jmanners" + ], + "content": { + "number": 12, + "repository": "MetOffice/socrates", + "title": "Tidy up references to FCM", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/12" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjq2XY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Tidy up references to FCM" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "@james-bruten-mo", + "content": { + "number": 164, + "repository": "MetOffice/SimSys_Scripts", + "title": "Refactor run_command error handling", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/164" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjq5SY", + "labels": [ + "enhancement" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Refactor run_command error handling" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 114, + "repository": "MetOffice/git_playground", + "title": "Test cla from stable", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/114" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtF5s", + "labels": [ + "contributor" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "In Progress", + "title": "Test cla from stable" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 115, + "repository": "MetOffice/git_playground", + "title": "Test from main", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/115" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtIAc", + "labels": [ + "contributor", + "cla-modified" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "In Progress", + "title": "Test from main" + }, + { + "code Review": "mike-hobson", + "content": { + "number": 137, + "repository": "MetOffice/lfric_apps", + "title": "118 ostia ice ancils", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/137" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtONI", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "DanCopsey" + ], + "sciTech Review": "DanCopsey", + "status": "SciTech Review", + "title": "118 ostia ice ancils" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "christophermaynard", + "content": { + "number": 138, + "repository": "MetOffice/lfric_apps", + "title": "Decompose across panels", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/138" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtTzI", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "christophermaynard", + "tommbendall" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Decompose across panels" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "christophermaynard", + "content": { + "number": 220, + "repository": "MetOffice/lfric_core", + "title": "Decompose across panels", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/220" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtbTI", + "labels": [ + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "mike-hobson", + "christophermaynard", + "tommbendall" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Decompose across panels" + }, + { + "assignees": [ + "caroduro" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 29, + "repository": "MetOffice/jules", + "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/29" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtplI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "reviewers": [], + "status": "SciTech Review", + "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 139, + "repository": "MetOffice/lfric_apps", + "title": "Refactor of damping layer matrix", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/139" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtrr4", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-lucy-gordon" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Refactor of damping layer matrix" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 140, + "repository": "MetOffice/lfric_apps", + "title": "Add workflow to block direct merges to the stable branch", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/140" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtsP8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "Add workflow to block direct merges to the stable branch" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "stevemullerworth", + "content": { + "number": 142, + "repository": "MetOffice/lfric_apps", + "title": "Floating-point precision conversions in jelf", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/142" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtzv8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "stevemullerworth", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "Floating-point precision conversions in jelf" + }, + { + "code Review": "@mike-hobson", + "content": { + "number": 143, + "repository": "MetOffice/lfric_apps", + "title": "Fix coupled model with 32bit compilation", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/143" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuC1Y", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mike-hobson" + ], + "status": "Done", + "title": "Fix coupled model with 32bit compilation" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "EdHone", + "content": { + "number": 144, + "repository": "MetOffice/lfric_apps", + "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/144" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuJ5E", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "EdHone", + "EdHone" + ], + "sciTech Review": "harry-shepherd", + "status": "Done", + "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs" + }, + { + "assignees": [ + "DrTVockerodtMO" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 145, + "repository": "MetOffice/lfric_apps", + "title": "Speed-up of adjoint transport", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/145" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuPxk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tom-j-h", + "tom-j-h", + "mo-lottieturner" + ], + "sciTech Review": "tom-j-h", + "status": "Code Review", + "title": "Speed-up of adjoint transport" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 221, + "repository": "MetOffice/lfric_core", + "title": "Fix Correction to Sampling Physics Winds", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/221" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuXjo", + "labels": [ + "bug", + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "atb1995", + "allynt" + ], + "sciTech Review": "atb1995", + "status": "Code Review", + "title": "Fix Correction to Sampling Physics Winds" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "content": { + "number": 147, + "repository": "MetOffice/lfric_apps", + "title": "cla signed ", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/147" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuiZY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "cla signed " + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 222, + "repository": "MetOffice/lfric_core", + "title": "Fix averaging kernel used in stochastic physics filter", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/222" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgju1p4", + "labels": [ + "bug", + "Linked Apps", + "KGO", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "thomasmelvin", + "cameronbateman-mo" + ], + "sciTech Review": "thomasmelvin", + "status": "Code Review", + "title": "Fix averaging kernel used in stochastic physics filter" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 148, + "repository": "MetOffice/lfric_apps", + "title": "Stochastic Physics Fixes", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/148" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgju66U", + "labels": [ + "bug", + "Linked Core", + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-claudiosanchez", + "oakleybrunt", + "cameronbateman-mo" + ], + "sciTech Review": "mo-claudiosanchez", + "status": "Code Review", + "title": "Stochastic Physics Fixes" + }, + { + "assignees": [ + "cjohnson-pi", + "mo-marqh" + ], + "code Review": "mo-marqh", + "content": { + "number": 149, + "repository": "MetOffice/lfric_apps", + "title": "Split mol with transport_efficiency", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/149" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxALo", + "labels": [ + "KGO", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-marqh" + ], + "status": "Code Review", + "title": "Split mol with transport_efficiency" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 165, + "repository": "MetOffice/SimSys_Scripts", + "title": "Fix export", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/165" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxAe4", + "labels": [ + "bug" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Fix export" + }, + { + "assignees": [ + "mo-alistairp" + ], + "code Review": "MetBenjaminWent", + "content": { + "number": 223, + "repository": "MetOffice/lfric_core", + "title": "Add GH_SCALAR_ARRAY to argument_mod", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/223" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxqXs", + "labels": [ + "enhancement", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "TeranIvy", + "TeranIvy", + "MetBenjaminWent" + ], + "status": "Code Review", + "title": "Add GH_SCALAR_ARRAY to argument_mod" + }, + { + "assignees": [ + "mo-lucy-gordon" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 150, + "repository": "MetOffice/lfric_apps", + "title": "Adding fortitude", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/150" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxrDM", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Adding fortitude" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 16, + "repository": "MetOffice/moci", + "title": "Add CR checking workflow to CI/CD Pipeline", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/16" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjx82M", + "labels": [ + "enhancement", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/moci", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Add CR checking workflow to CI/CD Pipeline" + }, + { + "assignees": [ + "cjohnson-pi" + ], + "code Review": "r-sharp", + "content": { + "number": 153, + "repository": "MetOffice/lfric_apps", + "title": "Remove redundant info from mesh configs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/153" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjytLQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "r-sharp" + ], + "status": "Code Review", + "title": "Remove redundant info from mesh configs" + }, + { + "assignees": [ + "cjohnson-pi" + ], + "code Review": "stevemullerworth", + "content": { + "number": 154, + "repository": "MetOffice/lfric_apps", + "title": "Linear 32bit", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/154" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj33Mg", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tom-j-h", + "stevemullerworth" + ], + "sciTech Review": "tom-j-h", + "status": "Code Review", + "title": "Linear 32bit" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 17, + "repository": "MetOffice/moci", + "title": "Move pylint.rc", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/17" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj39oM", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/moci", + "status": "In Progress", + "title": "Move pylint.rc" + }, + { + "assignees": [ + "mo-alistairp" + ], + "content": { + "number": 155, + "repository": "MetOffice/lfric_apps", + "title": "Sign contributors", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/155" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj4DXE", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "Done", + "title": "Sign contributors" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mike-hobson", + "content": { + "number": 227, + "repository": "MetOffice/lfric_core", + "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/227" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj5JPM", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "mike-hobson", + "thomasmelvin", + "thomasmelvin", + "mike-hobson" + ], + "sciTech Review": "thomasmelvin", + "status": "Done", + "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mike-hobson", + "content": { + "number": 156, + "repository": "MetOffice/lfric_apps", + "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/156" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj5NCY", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "ss421", + "ss421", + "mike-hobson", + "matthewrmshin" + ], + "sciTech Review": "ss421", + "status": "Code Review", + "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model" + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "yaswant", + "content": { + "number": 158, + "repository": "MetOffice/lfric_apps", + "title": "Add a COSP timestep so diagnostics can be sampled less often", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/158" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8TOw", + "labels": [ + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Petzi1", + "yaswant" + ], + "sciTech Review": "Petzi1", + "status": "Code Review", + "title": "Add a COSP timestep so diagnostics can be sampled less often" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 16, + "repository": "MetOffice/ukca", + "title": "add track review project", + "type": "PullRequest", + "url": "https://github.com/MetOffice/ukca/pull/16" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8jNQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/ukca", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add track review project" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 4, + "repository": "MetOffice/um_meta", + "title": "add project tracker", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um_meta/pull/4" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8kcI", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um_meta", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project tracker" + }, + { + "assignees": [ + "mike-hobson" + ], + "code Review": "svadams", + "content": { + "number": 228, + "repository": "MetOffice/lfric_core", + "title": "Update exchange_map_collection with copyright header", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/228" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8vEk", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "svadams" + ], + "status": "Code Review", + "title": "Update exchange_map_collection with copyright header" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mo-alistairp", + "content": { + "number": 161, + "repository": "MetOffice/lfric_apps", + "title": "Adjoint test initialised from realistic increment in jelf", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/161" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8vdU", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "mo-alistairp", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "Adjoint test initialised from realistic increment in jelf" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 162, + "repository": "MetOffice/lfric_apps", + "title": "Reenable incremental builds", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/162" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8-6k", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "MatthewHambley", + "MatthewHambley", + "MatthewHambley", + "t00sa" + ], + "sciTech Review": "MatthewHambley", + "status": "Code Review", + "title": "Reenable incremental builds" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "ericaneininger", + "content": { + "number": 19, + "repository": "MetOffice/moci", + "title": "Move shell out commands into separate library", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/19" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9CO0", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/moci", + "reviewers": [ + "ericaneininger", + "ericaneininger" + ], + "status": "Code Review", + "title": "Move shell out commands into separate library" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "jennyhickson", + "content": { + "number": 163, + "repository": "MetOffice/lfric_apps", + "title": "C224 adjoint tests in jelf", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/163" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9Nd8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "jennyhickson", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "C224 adjoint tests in jelf" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "MatthewHambley", + "content": { + "number": 165, + "repository": "MetOffice/lfric_apps", + "title": "Allow outputting of vertical height in W0 and W2H function spaces", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/165" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9gpY", + "labels": [ + "enhancement", + "Linked Core", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "MatthewHambley" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow outputting of vertical height in W0 and W2H function spaces" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "MatthewHambley", + "content": { + "number": 229, + "repository": "MetOffice/lfric_core", + "title": "Allow computation and storage of height at W0", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/229" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9iHk", + "labels": [ + "enhancement", + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "jameskent-metoffice", + "MatthewHambley" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow computation and storage of height at W0" + }, + { + "assignees": [ + "t00sa" + ], + "code Review": "r-sharp", + "content": { + "number": 166, + "repository": "MetOffice/lfric_apps", + "title": "Add support for monsoon 3", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/166" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9nCo", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Add support for monsoon 3" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 231, + "repository": "MetOffice/lfric_core", + "title": "Enable reading for cyclic data files using temporal controller", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/231" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj-OEc", + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "harry-shepherd" + ], + "sciTech Review": "harry-shepherd", + "status": "Code Review", + "title": "Enable reading for cyclic data files using temporal controller" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 56, + "repository": "MetOffice/growss", + "title": "Fix labelling logic", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/56" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj_mJ8", + "labels": [ + "bug" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "Fix labelling logic" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 232, + "repository": "MetOffice/lfric_core", + "title": "IO_Demo benchmarking configuration", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/232" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkAIYs", + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth", + "andrewcoughtrie", + "mo-lucy-gordon", + "mo-rickywong", + "james-bruten-mo" + ], + "sciTech Review": "andrewcoughtrie", + "status": "Code Review", + "title": "IO_Demo benchmarking configuration" + }, + { + "assignees": [ + "ppharris" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 35, + "repository": "MetOffice/jules", + "title": "Rose stem fixes for cehwl site", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/35" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkAlGo", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Rose stem fixes for cehwl site" + }, + { + "assignees": [ + "jameskent-metoffice" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 171, + "repository": "MetOffice/lfric_apps", + "title": "Added Stability with Advective Tracers", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/171" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkApM8", + "labels": [ + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "thomasmelvin", + "cameronbateman-mo", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "thomasmelvin", + "status": "Approved", + "title": "Added Stability with Advective Tracers" + }, + { + "assignees": [ + "mike-hobson", + "mo-marqh" + ], + "code Review": "EdHone", + "content": { + "number": 233, + "repository": "MetOffice/lfric_core", + "title": "Verniered Calipers performance 25 core", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/233" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkArdU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mike-hobson", + "MatthewHambley", + "EdHone", + "mike-hobson", + "EdHone" + ], + "sciTech Review": "mike-hobson", + "status": "Done", + "title": "Verniered Calipers performance 25 core" + }, + { + "assignees": [ + "cjohnson-pi" + ], + "code Review": "mo-marqh", + "content": { + "number": 170, + "repository": "MetOffice/lfric_apps", + "title": "Update linear integration tests", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/170" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkAyUQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "mo-marqh", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Update linear integration tests" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 57, + "repository": "MetOffice/growss", + "title": "Ignore unable assign", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/57" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkBdlo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Ignore unable assign" + }, + { + "assignees": [ + "bblay-mo" + ], + "content": { + "number": 169, + "repository": "MetOffice/lfric_apps", + "title": "S20 Diags: icao heights", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/169" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkBtFs", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "S20 Diags: icao heights" + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "t00sa", + "content": { + "number": 14, + "repository": "MetOffice/socrates", + "title": "Update Total Internal Partition Sums for HITRAN2024", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/14" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkBvcI", + "labels": [ + "enhancement", + "KGO" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "reviewers": [ + "Petzi1", + "t00sa" + ], + "status": "Done", + "title": "Update Total Internal Partition Sums for HITRAN2024" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 173, + "repository": "MetOffice/lfric_apps", + "title": "update jedi owners", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/173" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkB2Vo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson", + "jennyhickson" + ], + "status": "Done", + "title": "update jedi owners" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 237, + "repository": "MetOffice/lfric_core", + "title": "Allow different meshes to have different maximum halo depths", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/237" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkEdBA", + "labels": [ + "enhancement", + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "jameskent-metoffice", + "mike-hobson", + "stevemullerworth", + "andrewcoughtrie", + "mo-rickywong", + "EdHone", + "allynt" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow different meshes to have different maximum halo depths" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 174, + "repository": "MetOffice/lfric_apps", + "title": "Allow different meshes to have different maximum halo depths", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/174" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkEd7c", + "labels": [ + "enhancement", + "Linked Core", + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "allynt" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow different meshes to have different maximum halo depths" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 238, + "repository": "MetOffice/lfric_core", + "title": "New function space options for coordinate fields", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/238" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFJIA", + "labels": [ + "enhancement", + "Linked Apps", + "macro", + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-07-01T00:00:00Z", + "title": "Summer 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "thomasmelvin" + ], + "sciTech Review": "thomasmelvin", + "status": "Code Review", + "title": "New function space options for coordinate fields" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 20, + "repository": "MetOffice/moci", + "title": "Add ruff linting", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/20" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFLcE", + "repository": "https://github.com/MetOffice/moci", + "status": "In Progress", + "title": "Add ruff linting" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 58, + "repository": "MetOffice/growss", + "title": "fix project action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/58" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFS00", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "fix project action" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "oakleybrunt", + "content": { + "number": 176, + "repository": "MetOffice/lfric_apps", + "title": "Calipers performance25", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/176" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFm48", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "oakleybrunt", + "tommbendall", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "tommbendall", + "status": "Done", + "title": "Calipers performance25" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-rickywong", + "content": { + "number": 177, + "repository": "MetOffice/lfric_apps", + "title": "Solver improvements", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/177" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFuds", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "mo-rickywong" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Solver improvements" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 179, + "repository": "MetOffice/lfric_apps", + "title": "New function space options for coordinate fields", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/179" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkGOo4", + "labels": [ + "enhancement", + "Linked Core", + "KGO", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-07-01T00:00:00Z", + "title": "Summer 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "New function space options for coordinate fields" + }, + { + "content": { + "number": 59, + "repository": "MetOffice/growss", + "title": "Add logic to check CR in progress for trivial review", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/59" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkIlPE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Add logic to check CR in progress for trivial review" + }, + { + "content": { + "number": 18, + "repository": "MetOffice/ukca", + "title": "Further ASAD refactoring", + "type": "PullRequest", + "url": "https://github.com/MetOffice/ukca/pull/18" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkIv0I", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/ukca", + "status": "In Progress", + "title": "Further ASAD refactoring" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 244, + "repository": "MetOffice/lfric_core", + "title": "Correction to team in code owner file", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/244" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkJ85k", + "labels": [ + "bug", + "documentation", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "thomasmelvin", + "andrewcoughtrie" + ], + "sciTech Review": "thomasmelvin", + "status": "Done", + "title": "Correction to team in code owner file" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 180, + "repository": "MetOffice/lfric_apps", + "title": "Higher-order Orography", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/180" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkKD0U", + "labels": [ + "enhancement", + "KGO", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-07-01T00:00:00Z", + "title": "Summer 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "atb1995" + ], + "sciTech Review": "atb1995", + "status": "SciTech Review", + "title": "Higher-order Orography" + }, + { + "assignees": [ + "maggiehendry" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 39, + "repository": "MetOffice/jules", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/39" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkNnj4", + "labels": [ + "Linked UM", + "Linked Apps", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "Adrian-Lock", + "james-bruten-mo" + ], + "sciTech Review": "Adrian-Lock", + "status": "Approved", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 561, + "repository": "MetOffice/simulation-systems", + "title": "fix typo", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/561" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkO-yk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "fix typo" + }, + { + "assignees": [ + "maggiehendry" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 30, + "repository": "MetOffice/um", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/30" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkP6oM", + "repository": "https://github.com/MetOffice/um", + "reviewers": [ + "Adrian-Lock", + "james-bruten-mo" + ], + "sciTech Review": "Adrian-Lock", + "status": "Approved", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared" + }, + { + "assignees": [ + "maggiehendry" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 181, + "repository": "MetOffice/lfric_apps", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/181" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQJxI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Adrian-Lock", + "james-bruten-mo" + ], + "sciTech Review": "Adrian-Lock", + "status": "Approved", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mo-marqh", + "content": { + "number": 182, + "repository": "MetOffice/lfric_apps", + "title": "Linear and adjoint boundary layer physics", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/182" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQUoc", + "labels": [ + "KGO", + "macro", + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "cjohnson-pi", + "ss421", + "matthewrmshin", + "mo-marqh" + ], + "sciTech Review": "cjohnson-pi", + "status": "Code Review", + "title": "Linear and adjoint boundary layer physics" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 60, + "repository": "MetOffice/growss", + "title": "update to use base_ref, not base_sha", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/60" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQfaU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "update to use base_ref, not base_sha" + }, + { + "content": { + "number": 61, + "repository": "MetOffice/growss", + "title": "Change diff point", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/61" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQihQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Change diff point" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 183, + "repository": "MetOffice/lfric_apps", + "title": "Remove use of deprecated XIOS context API", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/183" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQ3bY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "Remove use of deprecated XIOS context API" + }, + { + "code Review": "t00sa", + "content": { + "number": 246, + "repository": "MetOffice/lfric_core", + "title": "240 add skeleton fab script", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/246" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkTZrw", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth", + "mike-hobson" + ], + "sciTech Review": "MatthewHambley", + "status": "SciTech Review", + "title": "240 add skeleton fab script" + }, + { + "assignees": [ + "t00sa" + ], + "code Review": "r-sharp", + "content": { + "number": 248, + "repository": "MetOffice/lfric_core", + "title": "Add support for the test suite on monsoon 3", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/248" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVTdU", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Add support for the test suite on monsoon 3" + }, + { + "assignees": [ + "caroduro", + "mo-eddy" + ], + "code Review": "ericaneininger", + "content": { + "number": 40, + "repository": "MetOffice/jules", + "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/40" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVVbI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "reviewers": [], + "status": "In Progress", + "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]" + }, + { + "assignees": [ + "mo-rickywong" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 249, + "repository": "MetOffice/lfric_core", + "title": "Remove module scope access of namelist variables by coordinate/native jacobian.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/249" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVjKo", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-lucy-gordon" + ], + "status": "Code Review", + "title": "Remove module scope access of namelist variables by coordinate/native jacobian." + }, + { + "assignees": [ + "mo-rickywong" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 184, + "repository": "MetOffice/lfric_apps", + "title": "Modify LFRic Apps files that call native/coordinate Jacobian files", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/184" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVrEM", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-lucy-gordon" + ], + "status": "Code Review", + "title": "Modify LFRic Apps files that call native/coordinate Jacobian files" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "EdHone", + "content": { + "number": 251, + "repository": "MetOffice/lfric_core", + "title": "Mpifort makefile", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/251" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkV0Ck", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "mike-hobson", + "stevemullerworth", + "mike-hobson", + "EdHone", + "EdHone" + ], + "sciTech Review": "mike-hobson", + "status": "Done", + "title": "Mpifort makefile" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "ericaneininger", + "content": { + "number": 169, + "repository": "MetOffice/SimSys_Scripts", + "title": "Suite merge script", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/169" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkWDiA", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa", + "t00sa", + "cameronbateman-mo", + "ericaneininger", + "ericaneininger" + ], + "sciTech Review": "t00sa", + "status": "Done", + "title": "Suite merge script" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "jennyhickson", + "content": { + "number": 565, + "repository": "MetOffice/simulation-systems", + "title": "Update README to add SimSys repository list", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/565" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkWsGE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Update README to add SimSys repository list" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "ericaneininger", + "content": { + "number": 186, + "repository": "MetOffice/lfric_apps", + "title": "Log to rank zero only by default", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/186" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkY2Ow", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "ss421", + "matthewrmshin", + "thomasmelvin", + "ericaneininger" + ], + "sciTech Review": "thomasmelvin", + "status": "Done", + "title": "Log to rank zero only by default" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "mo-alistairp", + "content": { + "number": 187, + "repository": "MetOffice/lfric_apps", + "title": "Improve negative mass error message", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/187" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkZBZY", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-alistairp" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Done", + "title": "Improve negative mass error message" + }, + { + "assignees": [ + "jennyhickson" + ], + "content": { + "number": 188, + "repository": "MetOffice/lfric_apps", + "title": "Add all codeowners to CODEOWNERS file", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/188" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkZhxs", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Add all codeowners to CODEOWNERS file" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 253, + "repository": "MetOffice/lfric_core", + "title": "Change gitattributes diff to fortran-free-form", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/253" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkaPyE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Change gitattributes diff to fortran-free-form" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 190, + "repository": "MetOffice/lfric_apps", + "title": "Update gitattributes diff to fortran-free-form", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/190" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkahf8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Update gitattributes diff to fortran-free-form" + }, + { + "assignees": [ + "christophermaynard", + "alanjhewitt" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 191, + "repository": "MetOffice/lfric_apps", + "title": "Radaer seg", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/191" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkahss", + "labels": [ + "Linked UKCA" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Radaer seg" + }, + { + "assignees": [ + "christophermaynard", + "alanjhewitt" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 21, + "repository": "MetOffice/ukca", + "title": "Segmetation in calls from lfric_apps to radaer", + "type": "PullRequest", + "url": "https://github.com/MetOffice/ukca/pull/21" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkangk", + "labels": [ + "Linked Apps", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/ukca", + "status": "In Progress", + "title": "Segmetation in calls from lfric_apps to radaer" + }, + { + "assignees": [ + "stevemullerworth" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 193, + "repository": "MetOffice/lfric_apps", + "title": "Replace model rh_crit with fixed value from config in glomap_aerosol", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/193" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkazA0", + "labels": [ + "KGO", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "mo-lottieturner" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Replace model rh_crit with fixed value from config in glomap_aerosol" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 195, + "repository": "MetOffice/lfric_apps", + "title": "Some kernels that write to W2 fields aren't safe for threading", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/195" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgka9qo", + "labels": [ + "bug", + "KGO", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Some kernels that write to W2 fields aren't safe for threading" + }, + { + "assignees": [ + "mike-hobson" + ], + "code Review": "stevemullerworth", + "content": { + "number": 254, + "repository": "MetOffice/lfric_core", + "title": "Improve partitioner unit tests", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/254" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdKkg", + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "stevemullerworth", + "MatthewHambley", + "james-bruten-mo", + "mo-rickywong" + ], + "status": "Changes Requested", + "title": "Improve partitioner unit tests" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 170, + "repository": "MetOffice/SimSys_Scripts", + "title": "Git ignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/170" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdehc", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "Git ignore" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-rickywong", + "content": { + "number": 255, + "repository": "MetOffice/lfric_core", + "title": "Mixed multigrid", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/255" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdgpY", + "labels": [ + "cla-required" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "status": "In Progress", + "title": "Mixed multigrid" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-rickywong", + "content": { + "number": 197, + "repository": "MetOffice/lfric_apps", + "title": "Mixed multigrid", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/197" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdhdo", + "labels": [ + "cla-required" + ], + "milestone": { + "description": "Code Review deadline is 25th September 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-11-04T00:00:00Z", + "title": "Autumn 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Mixed multigrid" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "yaswant", + "content": { + "number": 256, + "repository": "MetOffice/lfric_core", + "title": "Only build docs when docs files changed", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/256" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdxEk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Only build docs when docs files changed" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "yaswant", + "content": { + "number": 198, + "repository": "MetOffice/lfric_apps", + "title": "Only build docs when docs files changed", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/198" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdzlM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "Only build docs when docs files changed" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 200, + "repository": "MetOffice/lfric_apps", + "title": "Add fortitude to CI/CD pipeline", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/200" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkd8pA", + "labels": [ + "enhancement", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Add fortitude to CI/CD pipeline" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 258, + "repository": "MetOffice/lfric_core", + "title": "Add fortitude to CI/CD pipeline", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/258" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkd97A", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "status": "In Progress", + "title": "Add fortitude to CI/CD pipeline" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 171, + "repository": "MetOffice/SimSys_Scripts", + "title": "Refactor workload.py", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/171" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkeNkQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo", + "james-bruten-mo" + ], + "status": "Approved", + "title": "Refactor workload.py" + }, + { + "assignees": [ + "maggiehendry" + ], + "content": { + "number": 42, + "repository": "MetOffice/jules", + "title": "Migrate jules_pftparm metadata to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/42" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkeuwo", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "status": "In Progress", + "title": "Migrate jules_pftparm metadata to jules-shared" + }, + { + "assignees": [ + "ukmo-juan-castillo" + ], + "code Review": "TeranIvy", + "content": { + "number": 201, + "repository": "MetOffice/lfric_apps", + "title": "Lfric2lfric multi cpu", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/201" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkfp_8", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-rickywong", + "mo-rickywong" + ], + "sciTech Review": "mo-rickywong", + "status": "SciTech Review", + "title": "Lfric2lfric multi cpu" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 261, + "repository": "MetOffice/lfric_core", + "title": "Add tag to avoid vernier CCE MPI bug", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/261" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkiUrQ", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie", + "MatthewHambley", + "mike-hobson", + "EdHone", + "EdHone" + ], + "sciTech Review": "EdHone", + "status": "Approved", + "title": "Add tag to avoid vernier CCE MPI bug" + }, + { + "assignees": [ + "r-sharp" + ], + "code Review": "ericaneininger", + "content": { + "number": 173, + "repository": "MetOffice/SimSys_Scripts", + "title": "Tweaks to get VSCode's internal linters to quit whinging and make the\u2026", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/173" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkidQk", + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "Pierre-siddall" + ], + "sciTech Review": "Pierre-siddall", + "status": "Changes Requested", + "title": "Tweaks to get VSCode's internal linters to quit whinging and make the\u2026" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 174, + "repository": "MetOffice/SimSys_Scripts", + "title": "handle undefined ref", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/174" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkids0", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "handle undefined ref" + }, + { + "assignees": [ + "stevemullerworth" + ], + "code Review": "harry-shepherd", + "content": { + "number": 202, + "repository": "MetOffice/lfric_apps", + "title": "Extra fields need to be written to checkpoint dump for lfric_atm glomap_mode dust_and_clim", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/202" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgki7ns", + "labels": [ + "KGO", + "cla-required" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "harry-shepherd", + "alanjhewitt" + ], + "sciTech Review": "alanjhewitt", + "status": "Code Review", + "title": "Extra fields need to be written to checkpoint dump for lfric_atm glomap_mode dust_and_clim" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 33, + "repository": "MetOffice/um", + "title": "update readme with standard suites", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/33" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjAWQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "update readme with standard suites" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 203, + "repository": "MetOffice/lfric_apps", + "title": "Add standard suites", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/203" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjAx0", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson" + ], + "status": "Approved", + "title": "Add standard suites" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "yaswant", + "content": { + "number": 204, + "repository": "MetOffice/lfric_apps", + "title": "Add science guide section to documentation.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/204" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjY4g", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Add science guide section to documentation." + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "r-sharp", + "content": { + "number": 16, + "repository": "MetOffice/socrates", + "title": "Script to generate CMIP7 future scenario solar forcing for GA9 spectral files", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/16" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjjtg", + "labels": [ + "bug", + "enhancement", + "Linked Spectral" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "status": "In Progress", + "title": "Script to generate CMIP7 future scenario solar forcing for GA9 spectral files" + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "r-sharp", + "content": { + "number": 6, + "repository": "MetOffice/socrates-spectral", + "title": "Add CMIP7 future scenario solar variability files", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates-spectral/pull/6" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjmRc", + "labels": [ + "enhancement", + "Linked Socrates", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates-spectral", + "status": "In Progress", + "title": "Add CMIP7 future scenario solar variability files" + }, + { + "assignees": [ + "maggiehendry" + ], + "content": { + "number": 205, + "repository": "MetOffice/lfric_apps", + "title": "Migrate jules pftparm metadata to jules shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/205" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkn_3o", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Migrate jules pftparm metadata to jules shared" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 175, + "repository": "MetOffice/SimSys_Scripts", + "title": "fix for mirror extract", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/175" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkpoxM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson" + ], + "status": "Approved", + "title": "fix for mirror extract" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 176, + "repository": "MetOffice/SimSys_Scripts", + "title": "fixes for https", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/176" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkrHtk", + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa", + "t00sa" + ], + "status": "Done", + "title": "fixes for https" + } + ], + "totalCount": 227 +} \ No newline at end of file