Skip to content

Commit

Permalink
Merge branch 'dev' into event-confidence
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer authored Aug 15, 2024
2 parents 3b0640f + a4bea60 commit 820048b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bbot/modules/docker_pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class docker_pull(BaseModule):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow"]
flags = ["passive", "safe", "slow", "code-enum"]
meta = {
"description": "Download images from a docker repository",
"created_date": "2024-03-24",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/git_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class git_clone(github):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow"]
flags = ["passive", "safe", "slow", "code-enum"]
meta = {
"description": "Clone code github repositories",
"created_date": "2024-03-08",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class github_workflows(github):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe"]
flags = ["passive", "safe", "code-enum"]
meta = {
"description": "Download a github repositories workflow logs",
"created_date": "2024-04-29",
Expand Down
4 changes: 3 additions & 1 deletion bbot/modules/unstructured.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ class unstructured(BaseModule):
}

deps_apt = ["libmagic-dev", "poppler-utils", "tesseract-ocr", "libreoffice", "pandoc"]
deps_pip = ["unstructured[all-docs]"]
deps_pip = [
"git+https://github.com/Unstructured-IO/unstructured@9b778e270dd8547476370a9417520679cd46c802#egg=unstructured[all-docs]"
]

async def setup(self):
self.extensions = list(set([e.lower().strip(".") for e in self.config.get("extensions", [])]))
Expand Down

0 comments on commit 820048b

Please sign in to comment.