diff --git a/.github/workflows/agentic_v2_builder.yml b/.github/workflows/agentic_v2_builder.yml index ddb1cb49..db601c05 100644 --- a/.github/workflows/agentic_v2_builder.yml +++ b/.github/workflows/agentic_v2_builder.yml @@ -26,7 +26,11 @@ permissions: jobs: build-v2-edition: runs-on: ubuntu-latest - if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/develop') + if: | + github.event_name == 'workflow_dispatch' || + (github.event_name == 'push' && + github.ref == 'refs/heads/develop' && + !contains(github.event.head_commit.message, '[skip ci]')) steps: - name: Repository Synchronization uses: actions/checkout@v4 diff --git a/.github/workflows/readme_sync.yml b/.github/workflows/readme_sync.yml index c0cbb0e1..b265f31c 100644 --- a/.github/workflows/readme_sync.yml +++ b/.github/workflows/readme_sync.yml @@ -14,6 +14,7 @@ permissions: jobs: sync-readme: runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Repository Synchronization uses: actions/checkout@v4