From 77758cfe832490d00bc3a20259adc88d21b82beb Mon Sep 17 00:00:00 2001 From: Nekeo Date: Sat, 27 Jun 2026 17:01:54 +0200 Subject: [PATCH 1/3] fix: chromatic in ci --- .github/workflows/front-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/front-build.yaml b/.github/workflows/front-build.yaml index 4c59f46..2c58797 100644 --- a/.github/workflows/front-build.yaml +++ b/.github/workflows/front-build.yaml @@ -147,7 +147,7 @@ jobs: chromatic: name: Run Chromatic needs: [detect-changes, install] - if: needs.detect-changes.outputs.front == 'true' && ((github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main') || (github.event_name == 'push' && github.ref == 'refs/heads/main')) + if: needs.detect-changes.outputs.front == 'true' && ((github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main') || ((github.event_name == 'push' || github.event_name == 'workflow_call') && github.ref == 'refs/heads/main')) runs-on: ubuntu-latest timeout-minutes: 20 steps: From 5b8a644130fdad7bc1f738d5feedcc93c7ea3ecb Mon Sep 17 00:00:00 2001 From: Nekeo Date: Sat, 27 Jun 2026 17:01:59 +0200 Subject: [PATCH 2/3] ci: update permissions --- .github/workflows/develop-pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/develop-pipeline.yml b/.github/workflows/develop-pipeline.yml index cd15312..a814acf 100644 --- a/.github/workflows/develop-pipeline.yml +++ b/.github/workflows/develop-pipeline.yml @@ -8,7 +8,6 @@ on: permissions: contents: read - actions: read concurrency: group: develop-pipeline-${{ github.ref }} From b22a52726902e5687030ead2c5bf2ec1ac77f2df Mon Sep 17 00:00:00 2001 From: Nekeo Date: Sat, 27 Jun 2026 17:35:39 +0200 Subject: [PATCH 3/3] ci: ignore pr title on develop --- .github/workflows/pr-title-check.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-title-check.yaml b/.github/workflows/pr-title-check.yaml index e162a62..bbfd973 100644 --- a/.github/workflows/pr-title-check.yaml +++ b/.github/workflows/pr-title-check.yaml @@ -11,6 +11,7 @@ on: jobs: check-pr-title: name: Check PR Title + if: github.head_ref != 'develop' runs-on: ubuntu-latest permissions: pull-requests: read