Skip to content
Merged
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
26 changes: 26 additions & 0 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run pre-commit

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"

- name: Run prek
uses: j178/prek-action@v2
with:
extra_args: --all-files
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-yaml
args:
Expand All @@ -10,13 +10,13 @@ repos:
- id: check-toml
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.6
rev: v0.14.5
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/numpy/numpydoc
rev: "v1.8.0"
rev: "v1.10.0"
hooks:
- id: numpydoc-validation
exclude: tests/data/.*
1 change: 0 additions & 1 deletion doc/changes/DM-54548.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-55194.other.rst

This file was deleted.

1 change: 0 additions & 1 deletion doc/changes/DM-55434.bugfix.rst

This file was deleted.

15 changes: 15 additions & 0 deletions doc/lsst.ctrl.bps.htcondor/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
lsst-ctrl-bps-htcondor v30.0.9 (2026-07-15)
===========================================

Bug Fixes
---------

- Preserved ``nodeset`` value when creating ``wms_check_status`` jobs. (`DM-54548 <https://rubinobs.atlassian.net/browse/DM-54548>`_)
- Added signal handling and resilience to default ``provisioningScript``. (`DM-55434 <https://rubinobs.atlassian.net/browse/DM-55434>`_)


Other Changes and Additions
---------------------------

- Added ``dagman.conf`` value to ``DAGMAN_MAX_JOBS_IDLE`` workaround. (`DM-55194 <https://rubinobs.atlassian.net/browse/DM-55194>`_)

lsst-ctrl-bps-htcondor v30.0.6 (2026-04-07)
===========================================

Expand Down
Loading