From: Stephen Finucane Date: Sat, 6 Jun 2026 11:07:35 +0000 (+0100) Subject: CI: Avoid duplication of jobs X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=4c7d6d83bd295ba74c23316bfc2271092d946479;p=thirdparty%2Fpatchwork.git CI: Avoid duplication of jobs Only run on pushes to main and stable branches. Signed-off-by: Stephen Finucane --- diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e7c43e71..da27ae23 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,8 +1,11 @@ --- name: CI on: - - push - - pull_request + push: + branches: + - main + - stable/* + pull_request: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true