Skip to content

Commit

Permalink
chore: using pull pull request not push event (jumpserver#14164)
Browse files Browse the repository at this point in the history
* perf: diff with head not dev

* chore: using pull pull request not push event

---------

Co-authored-by: ibuler <[email protected]>
  • Loading branch information
fit2bot and ibuler authored Sep 14, 2024
1 parent b125297 commit 41a3e89
Showing 1 changed file with 16 additions and 27 deletions.
43 changes: 16 additions & 27 deletions .github/workflows/build-base-image.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 41a3e89

Please sign in to comment.