-
Notifications
You must be signed in to change notification settings - Fork 185
41 lines (37 loc) · 1.18 KB
/
update-syscalls.yml
File metadata and controls
41 lines (37 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Update Syscalls
on:
workflow_dispatch:
schedule:
- cron: '0 2 1 * *'
jobs:
update-syscalls:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: master
path: libs
- name: Bump syscalls
uses: falcosecurity/syscalls-bumper@main # should be pointing to main
with:
repo-root: ${{ github.workspace }}/libs
- name: Create Pull Request
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
path: libs
signoff: true
base: master
branch: update/syscalls
title: 'update(driver): update syscalls tables and driver report.'
body: |
This PR updates the list of supported syscalls from the latest kernel. Do not edit this PR.
/area driver
```release-note
NONE
```
commit-message: 'update(driver): update syscalls tables and driver report.'
token: ${{ secrets.GITHUB_TOKEN }}