feature(agent): add support for Universal eBPF #521
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: Greeting | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
greeting: | |
permissions: | |
pull-requests: write | |
name: Greeting comment upon PR from fork | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != 'sysdiglabs/charts' | |
steps: | |
- name: Issue the greeting comment | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Hi @${{ github.event.pull_request.user.login }}. Thanks for your PR. | |
After inspecting your changes someone with write access to this repo needs | |
to approve and run the workflow with the following slash_command. | |
NOTE: the workflow triggered this way will only report the final status to this PR, | |
in order to check the logs please go to the Actions tab and look for approve-test-run-command. | |
* `/approve-test-run sha=<short commit sha to test>`: Run helm chart linting and testing workflow |