Skip to content

Commit dfb41e9

Browse files
committed
test
Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent a5b074f commit dfb41e9

6 files changed

Lines changed: 18 additions & 12 deletions

.github/workflows/nightly-docker-build-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
EXAMPLES: ${{ vars.NIGHTLY_RELEASE_EXAMPLES }}
13+
EXAMPLES: "DBQnA" #${{ vars.NIGHTLY_RELEASE_EXAMPLES }}
1414
TAG: "latest"
1515
PUBLISH_TAGS: "latest"
1616

.github/workflows/pr-chart-e2e.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ name: E2E Test with Helm Charts
55
permissions:
66
contents: read
77
on:
8-
pull_request_target:
8+
# pull_request_target:
9+
pull_request:
910
branches: [main]
1011
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
1112
paths:

.github/workflows/pr-dependency-review.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
name: "Dependency Review"
5-
on: [pull_request_target]
5+
# on: [pull_request_target]
6+
on: [pull_request]
67

78
permissions:
89
contents: read

.github/workflows/pr-docker-compose-e2e.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ permissions:
77
contents: read
88

99
on:
10-
pull_request_target:
10+
# pull_request_target:
11+
pull_request:
1112
branches: ["main", "*rc"]
1213
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
1314
paths:

.github/workflows/push-image-build.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ permissions:
77
contents: read
88

99
on:
10-
push:
11-
branches: [ 'main' ]
12-
paths:
13-
- "**.py"
14-
- "**Dockerfile*"
15-
- "**docker_image_build/build.yaml"
16-
- "**/ui/**"
10+
# push:
11+
# branches: [ 'main' ]
12+
# paths:
13+
# - "**.py"
14+
# - "**Dockerfile*"
15+
# - "**docker_image_build/build.yaml"
16+
# - "**/ui/**"
17+
pull_request:
18+
branches: [main]
19+
types: [opened, reopened, ready_for_review, synchronize]
1720

1821
concurrency:
1922
group: ${{ github.workflow }}-${{ github.ref }}-on-push

.github/workflows/push-images-path-detection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
echo "-------------Retry is not valid-------------------"
4444
fi
4545
fi
46-
done < <(grep -n -oP '(?<=a href=")[^"]*(?=">)' ../../docker_images_list.md)
46+
done < <(grep -n -oP '(?<=a href=")[^"]*(?=">)' ./docker_images_list.md)
4747
4848
if [[ "$miss" == "TRUE" ]]; then
4949
exit 1

0 commit comments

Comments
 (0)