x-pack/filebeat/input/http_endpoint: decouple shared server lifetime from individual inputs #1756
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: Mention in PR | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_review_comment: | |
| types: [created] | |
| permissions: | |
| actions: read | |
| contents: write | |
| discussions: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| run: | |
| if: >- | |
| (startsWith(github.event.comment.body, '/ai') || contains(github.event.comment.body, '@claude')) && | |
| (github.event.issue.pull_request != null || github.event_name == 'pull_request_review_comment') && | |
| contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association) | |
| uses: elastic/ai-github-actions/.github/workflows/gh-aw-mention-in-pr.lock.yml@v0 | |
| with: | |
| setup-commands: | | |
| sudo apt-get update && sudo apt-get install -y libpcap-dev librpm-dev python3-venv | |
| export GOTOOLCHAIN=auto | |
| make mage | |
| secrets: | |
| COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }} |