Skip to content

Commit 9778493

Browse files
spboyerCopilot
andcommitted
fix: add missing path triggers for Docker CI workflow
Include .dockerignore, schemas/**, docs.go, docs/graders/**, and version.txt in path filters so changes to build context inputs reliably trigger the Docker build job. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b0d92f2 commit 9778493

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/docker-ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,31 @@ on:
55
branches: [main]
66
paths:
77
- 'Dockerfile'
8+
- '.dockerignore'
89
- 'go.mod'
910
- 'go.sum'
1011
- 'cmd/**'
1112
- 'internal/**'
1213
- 'web/**'
14+
- 'schemas/**'
15+
- 'docs.go'
16+
- 'docs/graders/**'
17+
- 'version.txt'
1318
- '.github/workflows/docker-ci.yml'
1419
pull_request:
1520
branches: [main]
1621
paths:
1722
- 'Dockerfile'
23+
- '.dockerignore'
1824
- 'go.mod'
1925
- 'go.sum'
2026
- 'cmd/**'
2127
- 'internal/**'
2228
- 'web/**'
29+
- 'schemas/**'
30+
- 'docs.go'
31+
- 'docs/graders/**'
32+
- 'version.txt'
2333
- '.github/workflows/docker-ci.yml'
2434

2535
jobs:

0 commit comments

Comments
 (0)