From 13d950c99df58c1d1f5c8f5929f7613cfe2145fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= <35407363+EniumRaphael@users.noreply.github.com> Date: Mon, 18 Aug 2025 19:36:11 +0200 Subject: [PATCH] chore(workflow/bun): updating the checkbuild to be on all branches (#32) - updating the workflow to be on all the branches (using the ** operator) --- .github/workflows/bun.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index a98d0e3..09106b8 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -2,8 +2,11 @@ name: CheckBuild on: push: - branches: [master] + branches: + - "**" pull_request: + branches: + - "**" permissions: contents: read