We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 758d236 commit 4b0bc26Copy full SHA for 4b0bc26
.github/workflows/push-infra-issue-creation.yml
@@ -5,7 +5,7 @@ on:
5
push:
6
branches: [ 'main','issue' ]
7
paths:
8
- - "**/docker/*/compose.yaml"
+ - "**/docker/*/compose*.yaml"
9
10
name: Create an issue to GenAIInfra on push
11
jobs:
@@ -25,7 +25,7 @@ jobs:
25
base_commit=$(git rev-parse HEAD~1)
26
merged_commit=$(git log -1 --format='%H')
27
changed_files="$(git diff --name-only ${base_commit} ${merged_commit} | \
28
- grep -E '.*/docker/.*/compose.yaml')" || true
+ grep -E '.*/docker/.*/compose.*.yaml')" || true
29
30
examples=$(printf '%s\n' "${changed_files[@]}" | grep '/' | cut -d'/' -f1 | sort -u)
31
format_examples=$(echo "$examples" | tr '\n' ',')
0 commit comments