Compare commits

..

3 Commits

Author SHA1 Message Date
dependabot[bot] 0c49948081 Bump actions/checkout from 4.2.2 to 6.0.2
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.2.2...v6.0.2)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-23 05:29:47 +00:00
Jonathon Broughton 3f5880156b Update rule_processor.py (#67)
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
2025-06-05 15:29:02 +01:00
Jonathon Broughton 6032306cc2 Update rule_processor.py (#66)
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
2025-06-05 15:23:23 +01:00
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ jobs:
steps:
# Step 1: Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2
# Step 2: Set up Python
- name: Setup Python
+4 -1
View File
@@ -335,9 +335,12 @@ def apply_rules_to_objects(
):
speckle_print(f"Rule {rule_id_str} Skipped")
newBase = Base()
newBase.id = "123"
automate_context.attach_info_to_objects(
category=f"Rule {rule_id_str} Skipped",
affected_objects=[Base()],
affected_objects=[newBase],
# This is a hack to get a rule to report with no valid objects
message=f"No objects found for rule {rule_id_str}",
metadata={},