feat(cli): Add kubectl retina bpftrace command for real-time network issue tracing
#6784
Workflow file for this run
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: Markdown Lint | |
| on: | |
| merge_group: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '**/*.md' | |
| permissions: | |
| contents: read | |
| jobs: | |
| markdownlint: | |
| if: ${{ github.event_name != 'merge_group' }} | |
| name: markdownlint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: DavidAnson/markdownlint-cli2-action@07035fd053f7be764496c0f8d8f9f41f98305101 # v22.0.0 | |
| with: | |
| command: config | |
| globs: | | |
| .github/.markdownlint.json | |
| **/*.md |