|
@@ -44,16 +44,17 @@ jobs:
|
|
|
outputs:
|
|
|
not-ignore: ${{ steps.filter.outputs.not-ignore }}
|
|
|
steps:
|
|
|
+ - uses: actions/checkout@v2
|
|
|
- uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
|
|
|
id: filter
|
|
|
with:
|
|
|
filters: |
|
|
|
not-ignore:
|
|
|
- - '!(docs/**|dolphinscheduler-ui/**|dolphinscheduler-ui-next/**)'
|
|
|
+ - '!(docs/**)'
|
|
|
build:
|
|
|
name: Backend-Build
|
|
|
needs: paths-filter
|
|
|
- if: ${{ needs.paths-filter.outputs.not-ignore == 'true' }}
|
|
|
+ if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
|
|
|
runs-on: ubuntu-latest
|
|
|
timeout-minutes: 30
|
|
|
steps:
|
|
@@ -86,7 +87,7 @@ jobs:
|
|
|
steps:
|
|
|
- name: Status
|
|
|
run: |
|
|
|
- if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' ]]; then
|
|
|
+ if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
|
|
|
echo "Skip Build!"
|
|
|
exit 0
|
|
|
fi
|