Skip to content

Commit

Permalink
chore: Run pre-commit on all files
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt committed Jan 14, 2025
1 parent cc3c652 commit 3b2eba8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dotenv_replace() {

echo -e "${YELLOW}Creating .env...${NC}"

# Check that docker exists and is running
# Check that docker exists and is running
if ! docker ps &> /dev/null
then
echo -e "${RED}Docker could not be found. Please check if installed and running.${NC}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ definition:
type: int
description: 'Must be incident id or display id'
default: null
status:
status:
type: str
description: 'Must be one of the following values: "new", "in progress", "close - handled", "close - prevented", "close - false positive", "close - known activity"'
default: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ definition:
ids: ${{ steps.query_detects.result.body.resources }}
member_cid: ${{ inputs.member_cid }}
operation_id: GetDetectSummaries
returns: ${{ steps.get_summaries.result }}
returns: ${{ steps.get_summaries.result }}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ definition:
params:
body:
ids: ${{ inputs.incident_ids }}
returns: ${{ steps.get_summaries.result }}
returns: ${{ steps.get_summaries.result }}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ definition:
namespace: integrations.crowdstrike
title: Get CrowdStrike CrowdScore Incidents
description: |
Query for CrowdStrike CrowdScore Incident IDs, and get all details for these IDs.
Query for CrowdStrike CrowdScore Incident IDs, and get all details for these IDs.
Uses the following two falcony operations -
1. https://falconpy.io/Service-Collections/Incidents.html#queryincidents 2. https://falconpy.io/Service-Collections/Incidents.html#getincidents
display_group: CrowdStrike
Expand Down Expand Up @@ -39,4 +39,4 @@ definition:
params:
body:
ids: ${{ steps.query_incidents.result.body.resources }}
returns: ${{ steps.get_summaries.result }}
returns: ${{ steps.get_summaries.result }}
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ definition:
params:
filter: ${{ inputs.filter || "state:'open'" }}
limit: ${{ inputs.limit }}
returns: ${{ steps.query_incidents.result }}
returns: ${{ steps.query_incidents.result }}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ definition:
created_at__gte: ${{ inputs.start_time }}
created_at__lte: ${{ inputs.end_time }}
limit: ${{ inputs.limit }}
returns: ${{ steps.query_threats.result }}
returns: ${{ steps.query_threats.result }}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ definition:
analystVerdict: ${{ inputs.verdict }}
filter:
ids: ${{ inputs.threat_ids }}
returns: ${{ steps.update_threat_status.result }}
returns: ${{ steps.update_threat_status.result }}
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ definition:
Authorization: Bearer ${{ SECRETS.wazuh.WAZUH_API_TOKEN }}
verify_ssl: ${{ inputs.verify_ssl }}
returns: ${{ steps.get_results_rootcheck.result }}

2 changes: 1 addition & 1 deletion temporal/config/tracecat-sql.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
limit.maxIDLength:
- value: 255
constraints: {}
constraints: {}

0 comments on commit 3b2eba8

Please sign in to comment.