Skip to content

Commit

Permalink
Merge pull request #1659 from domwhewell-sage/add-code-enum-tags
Browse files Browse the repository at this point in the history
Tagged modules with `code-enum`
  • Loading branch information
TheTechromancer authored Aug 14, 2024
2 parents fa51cff + 2df980a commit 1220598
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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

0 comments on commit 1220598

Please sign in to comment.