From f457f40d0f8acf8f6fc8590e75a4c03cff060db4 Mon Sep 17 00:00:00 2001 From: Paul-Henry Kajfasz <42912740+phklive@users.noreply.github.com> Date: Sat, 1 Jun 2024 11:04:04 +0200 Subject: [PATCH] chore: add `next` as a branch for CI runs on merge (#709) --- .github/workflows/lint.yml | 9 ++++----- .github/workflows/no-std.yml | 3 +-- .github/workflows/test.yml | 5 ++--- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fb54fe46a..13071ed82 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,11 +3,10 @@ name: lint on: - push: - branches: - - main - pull_request: - types: [opened, reopened, synchronize] + push: + branches: [main, next] + pull_request: + types: [opened, reopened, synchronize] jobs: version: diff --git a/.github/workflows/no-std.yml b/.github/workflows/no-std.yml index d26233eab..8f0bbfa3b 100644 --- a/.github/workflows/no-std.yml +++ b/.github/workflows/no-std.yml @@ -4,8 +4,7 @@ name: no-std on: push: - branches: - - main + branches: [main, next] pull_request: types: [opened, reopened, synchronize] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98e022e8a..1aeb30e43 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,10 +2,9 @@ name: test on: push: - branches: - - main + branches: [main, next] pull_request: - types: [opened, reopened, synchronize] + types: [opened, reopened, synchronize] jobs: test: