feature: tag events that come from a filestream with take_over: true
#4732
Workflow file for this run
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: check-x-pack-filebeat | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/check-xpack-filebeat.yml' | |
- 'x-pack/filebeat/**' | |
- 'filebeat/**' | |
env: | |
BEAT_MODULE: 'x-pack/filebeat' | |
permissions: | |
contents: read | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: .go-version | |
- name: Update package lists | |
run: sudo apt-get update | |
- name: Install libpcap-dev | |
run: sudo apt-get install -y libpcap-dev | |
- name: Run check/update | |
run: | | |
go install github.com/magefile/mage | |
make -C ${{ env.BEAT_MODULE }} check update | |
make check-no-changes |