Skip to content

Commit

Permalink
modified ci workflow to only trigger on push to branches other than main
Browse files Browse the repository at this point in the history
  • Loading branch information
r-caamano committed Aug 7, 2024
1 parent 4b78c2c commit 0cd0d5a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
---
name: release

on: [push]

on:
push:
branches:
- '*'
- '!main'

env:
APP_NAME: 'zfw'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format

---
###
# [0.8.12] - 2024-08-07
- Change ci workflow display name and to trigger on puch to branches other than main.
-
###
# [0.8.11] - 2024-08-03

- Edit Readme updated ```zfw -L -E ``` outputs
Expand Down
2 changes: 1 addition & 1 deletion src/zfw.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ char *direction_string;
char *masq_interface;
char check_alt[IF_NAMESIZE];

const char *argp_program_version = "0.8.11";
const char *argp_program_version = "0.8.12";
struct ring_buffer *ring_buffer;

__u32 if_list[MAX_IF_LIST_ENTRIES];
Expand Down
2 changes: 1 addition & 1 deletion src/zfw_monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ char check_alt[IF_NAMESIZE];
char doc[] = "zfw_monitor -- ebpf firewall monitor tool";
const char *rb_map_path = "/sys/fs/bpf/tc/globals/rb_map";
const char *tproxy_map_path = "/sys/fs/bpf/tc/globals/zt_tproxy_map";
const char *argp_program_version = "0.8.11";
const char *argp_program_version = "0.8.12";
union bpf_attr rb_map;
int rb_fd = -1;

Expand Down

0 comments on commit 0cd0d5a

Please sign in to comment.