Skip to content

Commit 0e7481d

Browse files
chore(ci): add pull_request trigger to image build workflow
New workflow files don't trigger push events until they exist on the default branch. Add pull_request trigger with paths filter so images get built during this PR. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3a0b4f0 commit 0e7481d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ name: build-ci-image
22

33
on:
44
push:
5-
branches: [master, main, feat/ci-ubi10-container] # TODO: remove feature branch after merge
5+
branches: [master, main]
6+
paths:
7+
- '.devcontainer/Containerfile'
8+
- '.devcontainer/Containerfile.intel'
9+
- '.github/workflows/build-ci-image.yml'
10+
pull_request:
611
paths:
712
- '.devcontainer/Containerfile'
813
- '.devcontainer/Containerfile.intel'

0 commit comments

Comments
 (0)