From cc91c9f032636a141220803484d824839cc447ed Mon Sep 17 00:00:00 2001 From: Sergio Date: Thu, 23 Oct 2025 22:58:26 +0200 Subject: [PATCH 1/3] chore: suppresed variables that caused errors and removed misplaced function --- src/parser/parser.c | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/src/parser/parser.c b/src/parser/parser.c index 5fb39e8..38a2b4c 100644 --- a/src/parser/parser.c +++ b/src/parser/parser.c @@ -6,13 +6,12 @@ /* By: sede-san Date: Thu, 23 Oct 2025 23:02:44 +0200 Subject: [PATCH 2/3] update: makefile and norminette workflows are now applied only in main and develop branches --- .github/workflows/makefile.yml | 1 + .github/workflows/norminette.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index cca06e1..3e4ae11 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -2,6 +2,7 @@ name: Makefile on: push: + branches: main, develop jobs: check-makefile: diff --git a/.github/workflows/norminette.yml b/.github/workflows/norminette.yml index 843604c..f1352fc 100644 --- a/.github/workflows/norminette.yml +++ b/.github/workflows/norminette.yml @@ -2,6 +2,7 @@ name: Norminette on: push: + branches: main, develop jobs: check-norminette: From 45465a6f85425e5a9484ab9ad4cb17f8058a39b8 Mon Sep 17 00:00:00 2001 From: Sergio Date: Thu, 23 Oct 2025 23:08:07 +0200 Subject: [PATCH 3/3] fix: fixed syntax for actions in branches --- .github/workflows/makefile.yml | 4 +++- .github/workflows/norminette.yml | 4 +++- .github/workflows/sync.yml | 3 ++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 3e4ae11..87bb79e 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -2,7 +2,9 @@ name: Makefile on: push: - branches: main, develop + branches: + - main + - develop jobs: check-makefile: diff --git a/.github/workflows/norminette.yml b/.github/workflows/norminette.yml index f1352fc..174d71f 100644 --- a/.github/workflows/norminette.yml +++ b/.github/workflows/norminette.yml @@ -2,7 +2,9 @@ name: Norminette on: push: - branches: main, develop + branches: + - main + - develop jobs: check-norminette: diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index 1fdb61c..68c0a6b 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -2,7 +2,8 @@ name: Update 42 repo on: push: - branches: main + branches: + - main permissions: contents: write