[Security Solution][Alerting] Add rulesClient.bulkCreate(), with feedback from ResponseOps #118650
This file contains hidden or 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: Sync CI on comment | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| jobs: | |
| issue_commented: | |
| name: sync ci checks on comment | |
| if: | | |
| github.event.issue.pull_request | |
| && contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association) | |
| && startsWith(github.event.comment.body, '/sync-ci') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout kibana-operations | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: 'elastic/kibana-operations' | |
| ref: main | |
| path: ./kibana-operations | |
| token: ${{secrets.KIBANAMACHINE_TOKEN}} | |
| persist-credentials: false | |
| - name: Sync CI Status Checks | |
| working-directory: ./kibana-operations/triage | |
| env: | |
| GITHUB_TOKEN: ${{secrets.KIBANAMACHINE_TOKEN}} | |
| BUILDKITE_TOKEN: ${{secrets.OPS_BUILDKITE_TOKEN}} | |
| run: | | |
| npm ci --omit=dev | |
| node verify-ci-check ${{github.event.issue.number}} |