Failing test: Detection Engine - New Terms Rule Execution Logic Integration Tests - Serverless Env - Complete Tier.x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/rule_execution_logic/new_terms/trial_license_complete_tier/new_terms_alert_suppression·ts - New terms rule execution logic API @ess @serverless New terms type rules, alert suppression should NOT suppress and update an alert if the alert is closed #147344
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add to APM Project | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
add_to_project: | |
runs-on: ubuntu-latest | |
if: | | |
github.event.label.name == 'Team:apm' | |
steps: | |
- uses: octokit/graphql-action@8ad880e4d437783ea2ab17010324de1075228110 # v2.3.2 | |
id: add_to_project | |
with: | |
query: | | |
mutation add_to_project($projectid:ID!,$contentid:ID!) { | |
addProjectV2ItemById(input:{projectId:$projectid contentId:$contentid}) { | |
item { | |
... on ProjectV2Item { | |
id | |
} | |
} | |
} | |
} | |
projectid: ${{ env.PROJECT_ID }} | |
contentid: ${{ github.event.issue.node_id }} | |
env: | |
PROJECT_ID: "PVT_kwDOAGc3Zs0VSg" | |
GITHUB_TOKEN: ${{ secrets.APM_TECH_KIBANA_USER_TOKEN }} | |
- uses: octokit/graphql-action@8ad880e4d437783ea2ab17010324de1075228110 # v2.3.2 | |
id: label_team | |
with: | |
query: | | |
mutation label_team($projectid:ID!,$itemid:ID!,$fieldid:ID!,$value:String!) { | |
updateProjectV2ItemFieldValue(input: { projectId:$projectid itemId:$itemid fieldId:$fieldid value:{singleSelectOptionId: $value} }) { | |
projectV2Item { | |
id | |
content { | |
... on Issue { | |
number | |
} | |
} | |
} | |
} | |
} | |
projectid: ${{ env.PROJECT_ID }} | |
itemid: ${{ fromJSON(steps.add_to_project.outputs.data).addProjectV2ItemById.item.id }} | |
fieldid: "PVTSSF_lADOAGc3Zs0VSs2scg" | |
value: "c33f5c54" | |
env: | |
PROJECT_ID: "PVT_kwDOAGc3Zs0VSg" | |
GITHUB_TOKEN: ${{ secrets.APM_TECH_KIBANA_USER_TOKEN }} |