Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
os: [ubuntu-latest, macos-14]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand All @@ -50,7 +50,7 @@ jobs:
os: [ubuntu-latest, macos-14]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand All @@ -61,7 +61,7 @@ jobs:
echo "LEGEND_METADATA=$GITHUB_WORKSPACE/inputs" >> $GITHUB_ENV

- name: Clone legend-metadata
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: legend-exp/legend-metadata
fetch-depth: 0
Expand All @@ -80,7 +80,7 @@ jobs:
name: Calculate and upload test coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 2
- uses: actions/setup-python@v6
Expand Down
4 changes: 3 additions & 1 deletion workflow/src/legenddataflow/scripts/flow/merge_in_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ def merge_in_channel() -> None:
fkey = ChannelProcKey.get_filekey_from_pattern(Path(infile).name)
tb_in = lh5.read(f"{fkey.channel}", infile)

objects[f"{fkey.processing_step}".split("_", maxsplit=3)[2]] = tb_in[f"{fkey.processing_step}".split("_", maxsplit=3)[2]]
objects[f"{fkey.processing_step}".split("_", maxsplit=3)[2]] = tb_in[
f"{fkey.processing_step}".split("_", maxsplit=3)[2]
]

lh5.write(
Struct(objects),
Expand Down
Loading