Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ For example, `action required: update plugins to use new sdk version`.
-->

```release-note

NONE
```
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: CI

on:
pull_request:
branches: [master]
branches: [main]
push:
branches: [master]
branches: [main]

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
run: make -j4
7 changes: 4 additions & 3 deletions .github/workflows/clang-format-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ name: clang-format Check

on:
pull_request:
branches: [master]
branches: [main]
push:
branches: [master]
branches: [main]

jobs:
formatting-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run clang-format style check
uses: jidicula/clang-format-action@f62da5e3d3a2d88ff364771d9d938773a618ab5e #v4.11.0
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ C++ header only library fo facilitate writing [Falcosecurity plugins](https://fa

The library uses the C++11 standards.

> __NOTE:__ master is not guaranteed to be compatible with latest released Falco; use correct release instead to target a specific Falco version!
> __NOTE:__ main is not guaranteed to be compatible with latest released Falco; use correct release instead to target a specific Falco version!

## Installation

Expand Down