cgroups v2 for sysdig agent #178
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
# If someone with write access comments "/approve-test-run" on a pull request, emit a repository_dispatch event | |
name: Approve Test Run | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
approve-test-run: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
if: ${{ github.event.issue.pull_request }} | |
steps: | |
- name: Slash Command Dispatch | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.TOOLS_JENKINS_ADMIN_ACCESS_GITHUB_TOKEN }} | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-type: pull-request | |
commands: approve-test-run | |
permission: write |