Skip to content

Commit 5cc3b03

Browse files
authored
Merge branch 'main' into lockfiles-pytest
2 parents e842b14 + d20ad71 commit 5cc3b03

File tree

7 files changed

+30
-12
lines changed

7 files changed

+30
-12
lines changed

.github/workflows/ci-linkchecks.yml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,47 @@ on:
55
schedule:
66
- cron: "00 06 * * *"
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
jobs:
913
linkChecker:
1014
runs-on: ubuntu-latest
1115
permissions:
1216
issues: write # required for peter-evans/create-issue-from-file
17+
1318
steps:
1419
- uses: actions/checkout@v5
20+
with:
21+
fetch-depth: 0
22+
persist-credentials: false
1523

1624
- name: Link Checker
1725
id: lychee
1826
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0
1927
with:
2028
token: ${{secrets.GITHUB_TOKEN}}
2129
fail: false
22-
args: "--verbose --max-concurrency 1 './docs/**/*.rst' './docs/**/*.inc' './lib/**/*.py'"
30+
args: |
31+
--verbose
32+
--max-concurrency 1
33+
'./docs/**/*.rst'
34+
'./docs/**/*.inc'
35+
'./lib/**/*.py'
2336
2437
- name: Create Issue From File
25-
if: steps.lychee.outputs.exit_code != 0
38+
if: ${{ fromJSON(steps.lychee.outputs.exit_code) != 0 }}
2639
uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710
2740
with:
2841
title: Link Checker Report
2942
content-filepath: ./lychee/out.md
30-
labels: "Bot, Type: Documentation, Type: Bug"
43+
labels: |
44+
Bot
45+
Type: Documentation
46+
Type: Bug
3147
3248
- name: Fail Workflow On Link Errors
33-
if: steps.lychee.outputs.exit_code != 0
49+
if: ${{ fromJSON(steps.lychee.outputs.exit_code) != 0 }}
3450
run:
35-
exit {{ steps.lychee.outputs.exit_code }}
51+
exit ${{ fromJSON(steps.lychee.outputs.exit_code) }}

.github/workflows/ci-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ concurrency:
2323
jobs:
2424
manifest:
2525
name: "check-manifest"
26-
uses: scitools/workflows/.github/workflows/ci-manifest.yml@2025.11.2
26+
uses: scitools/workflows/.github/workflows/ci-manifest.yml@2025.11.4

.github/workflows/ci-template-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
prompt-share:
13-
uses: scitools/workflows/.github/workflows/ci-template-check.yml@2025.11.2
13+
uses: scitools/workflows/.github/workflows/ci-template-check.yml@2025.11.4
1414
secrets: inherit
1515
with:
1616
pr_number: ${{ github.event.pull_request.number }}

.github/workflows/refresh-lockfiles.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ on:
1414

1515
jobs:
1616
refresh_lockfiles:
17-
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2025.11.2
17+
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2025.11.4
1818
secrets: inherit

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
- id: no-commit-to-branch
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: "v0.14.4"
32+
rev: "v0.14.5"
3333
hooks:
3434
- id: ruff
3535
types: [file, python]

docs/src/whatsnew/latest.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,17 @@ This document explains the changes made to Iris for this release
7272
💼 Internal
7373
===========
7474

75-
#. N/A
75+
#. `@trexfeathers`_ and `@hdyson`_ updated ``_ff_replacement.py`` to clarify
76+
that Iris supports Ancillaries. (:pull:`6792`)
7677

7778

7879
.. comment
7980
Whatsnew author names (@github name) in alphabetical order. Note that,
8081
core dev names are automatically included by the common_links.inc:
8182
83+
.. _@hdyson: https://github.com/hdyson
8284

8385

8486

8587
.. comment
86-
Whatsnew resources in alphabetical order:
88+
Whatsnew resources in alphabetical order:

lib/iris/fileformats/um/_ff_replacement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# See LICENSE in the root of the repository for full licensing details.
55
"""Support for UM "fieldsfile-like" files.
66
7-
At present, the only UM file types supported are true FieldsFiles and LBCs.
7+
UM file types known to be supported: FieldsFiles, LBCs, Ancillaries.
88
Other types of UM file may fail to load correctly (or at all).
99
1010
"""

0 commit comments

Comments
 (0)