Failing test: X-Pack Cloud Security Posture Functional Tests.x-pack/test/cloud_security_posture_functional/pages/findings·ts - Cloud Security Posture Findings Page Table Sort sorts by a column, should be case sensitive/insensitive depending on the column #85168
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
--- | |
## | |
## This the automation to let Observability team members to deploy a Kibana instance | |
## using the Observability test environments. | |
## It will deploy a new instance for those who add a comment /oblt-deploy | |
## only supported for Elasticians. | |
## | |
## Owner: @elastic/observablt-robots | |
## Further details: https://ela.st/oblt-deploy-my-kibana | |
## | |
name: deploy-my-kibana | |
on: | |
issue_comment: | |
types: | |
- created | |
permissions: | |
contents: read | |
jobs: | |
deploy-my-kibana: | |
if: ${{ github.event.issue.pull_request && (github.event.comment.body == '/oblt-deploy' || github.event.comment.body == '/oblt-deploy-serverless') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: elastic/apm-pipeline-library/.github/actions/deploy-my-kibana@current | |
with: | |
vaultUrl: ${{ secrets.OBLT_VAULT_ADDR }} | |
vaultRoleId: ${{ secrets.OBLT_VAULT_ROLE_ID }} | |
vaultSecretId: ${{ secrets.OBLT_VAULT_SECRET_ID }} | |
serverless: ${{ github.event.comment.body == '/oblt-deploy-serverless' }} |