From 41a3e8924884235b5cb1a5bfdc6b99470217a190 Mon Sep 17 00:00:00 2001 From: fit2bot <68588906+fit2bot@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:21:49 +0800 Subject: [PATCH] chore: using pull pull request not push event (#14164) * perf: diff with head not dev * chore: using pull pull request not push event --------- Co-authored-by: ibuler --- .github/workflows/build-base-image.yml | 43 ++++++++++---------------- 1 file changed, 16 insertions(+), 27 deletions(-) diff --git a/.github/workflows/build-base-image.yml b/.github/workflows/build-base-image.yml index 91450e4de..4dd1902fb 100644 --- a/.github/workflows/build-base-image.yml +++ b/.github/workflows/build-base-image.yml @@ -1,38 +1,27 @@ name: Build and Push Base Image on: - push: + pull_request: branches: - - 'pr*' + - 'dev' + - 'v*' + paths: + - poetry.lock + - pyproject.toml + - Dockerfile-base + - package.json + - go.mod + - yarn.lock + - pom.xml + - install_deps.sh + types: + - opened + - synchronize + - reopened jobs: - check-deps-change: - runs-on: ubuntu-latest - outputs: - should_skip: ${{ steps.set_skip_flag.outputs.should_skip }} # 输出 should_skip 标志 - steps: - - name: Checkout code - uses: actions/checkout@v2 - with: - fetch-depth: 0 # 确保检出完整历史 - - - name: Fetch all branches - run: git fetch --all # 拉取所有分支 - - - name: Check conditions - id: set_skip_flag - run: | - if git diff --name-only HEAD^ HEAD | grep -E 'poetry.lock|pyproject.toml|Dockerfile-base|package.json|go.mod|yarn.lock|pom.xml|install_deps.sh';then - echo "Found deps file changes" - else - echo "Not found deps file changes, skip build" - echo "::set-output name=should_skip::true" # 根据条件设置输出 - fi - build-and-push: runs-on: ubuntu-latest - needs: check-deps-change # 依赖 check_skip job 的执行结果 - if: needs.check-deps-change.outputs.should_skip != 'true' steps: - name: Checkout repository uses: actions/checkout@v4