Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot] 2dc26a8c24 Bump specklesystems/speckle-automate-github-composite-action
Bumps [specklesystems/speckle-automate-github-composite-action](https://github.com/specklesystems/speckle-automate-github-composite-action) from 0.9.0 to 0.9.2.
- [Release notes](https://github.com/specklesystems/speckle-automate-github-composite-action/releases)
- [Commits](https://github.com/specklesystems/speckle-automate-github-composite-action/compare/0.9.0...0.9.2)

---
updated-dependencies:
- dependency-name: specklesystems/speckle-automate-github-composite-action
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-24 05:20:13 +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
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ jobs:
# Step 5: Build and publish the Speckle function
- name: Speckle Automate Function - Build and Publish
uses: specklesystems/speckle-automate-github-composite-action@0.9.0
uses: specklesystems/speckle-automate-github-composite-action@0.9.2
with:
speckle_automate_url: ${{ env.SPECKLE_AUTOMATE_URL || 'https://automate.speckle.dev' }}
speckle_token: ${{ secrets.SPECKLE_FUNCTION_TOKEN }}
+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={},