mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
[CI] Remove pull_request trigger from full CI workflows (#18626)
Cleans up PR check lists by preventing full CI workflows from appearing as skipped jobs. Previously, full CI workflows were triggered on every PR but jobs were skipped unless the branch started with `full-ci/`. This caused skipped jobs to appear in the PR checks list, making it cluttered. Now full CI is only triggered by: - Push to `full-ci/**` branches - Daily schedule - Manual workflow_dispatch Ref: https://github.com/Sylius/Sylius/pull/18607
This commit is contained in:
commit
2efe0ffdca
3 changed files with 0 additions and 12 deletions
4
.github/workflows/ci__full_1_14.yaml
vendored
4
.github/workflows/ci__full_1_14.yaml
vendored
|
|
@ -1,9 +1,6 @@
|
|||
name: Continuous Integration 1.14 (Full)
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '1.14'
|
||||
push:
|
||||
branches:
|
||||
- 'full-ci/**'
|
||||
|
|
@ -21,7 +18,6 @@ permissions:
|
|||
|
||||
jobs:
|
||||
static-checks:
|
||||
if: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'full-ci/') }}
|
||||
strategy:
|
||||
matrix:
|
||||
branch: ["1.14"]
|
||||
|
|
|
|||
4
.github/workflows/ci__full_2_1.yaml
vendored
4
.github/workflows/ci__full_2_1.yaml
vendored
|
|
@ -1,9 +1,6 @@
|
|||
name: Continuous Integration 2.1 (Full)
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '2.1'
|
||||
push:
|
||||
branches:
|
||||
- 'full-ci/**'
|
||||
|
|
@ -21,7 +18,6 @@ permissions:
|
|||
|
||||
jobs:
|
||||
static-checks:
|
||||
if: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'full-ci/') }}
|
||||
strategy:
|
||||
matrix:
|
||||
branch: ["2.1"]
|
||||
|
|
|
|||
4
.github/workflows/ci__full_2_2.yaml
vendored
4
.github/workflows/ci__full_2_2.yaml
vendored
|
|
@ -1,9 +1,6 @@
|
|||
name: Continuous Integration 2.2 (Full)
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '2.2'
|
||||
push:
|
||||
branches:
|
||||
- 'full-ci/**'
|
||||
|
|
@ -21,7 +18,6 @@ permissions:
|
|||
|
||||
jobs:
|
||||
static-checks:
|
||||
if: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'full-ci/') }}
|
||||
strategy:
|
||||
matrix:
|
||||
branch: ["2.2"]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue