Skip to content

Commit 60fdfc6

Browse files
committed
Add missing configuration for copy-pr-bot to work
1 parent 2758a69 commit 60fdfc6

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.github/workflows/container-build-test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,26 @@ on:
3535
- '.github/actions/setup-build-env/**'
3636
# Build scripts
3737
- 'build_image_list.sh'
38+
push:
39+
branches:
40+
- "pull-request/[0-9]+"
41+
paths:
42+
# Container-related files
43+
- '**/Dockerfile*'
44+
- '**/docker/**'
45+
- '**/*.go'
46+
- '**/go.mod'
47+
- '**/go.sum'
48+
- '**/pyproject.toml'
49+
- '**/poetry.lock'
50+
- '**/*Makefile*'
51+
- 'scripts/**'
52+
# Workflow files
53+
- '.github/workflows/container-build-test.yml'
54+
- '.github/actions/build-container/**'
55+
- '.github/actions/setup-build-env/**'
56+
# Build scripts
57+
- 'build_image_list.sh'
3858
workflow_dispatch:
3959
inputs:
4060
components:

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121
push:
2222
branches:
2323
- main
24+
- "pull-request/[0-9]+"
2425
workflow_dispatch:
2526

2627
concurrency:

.github/workflows/lint-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121
push:
2222
branches:
2323
- main
24+
- "pull-request/[0-9]+"
2425
tags:
2526
- 'v*'
2627
workflow_dispatch:

0 commit comments

Comments
 (0)