Skip to content

Commit 871c560

Browse files
committed
Fixup workflows
1 parent 0483b04 commit 871c560

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/test-pr.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
name: Test pull request
33

44
on:
5-
# We use pull_request_target so that dependabot-created workflows can run
6-
pull_request_target:
5+
pull_request:
76
types:
87
- opened
98
- synchronize
@@ -24,8 +23,7 @@ jobs:
2423
runs-on: ubuntu-latest
2524
steps:
2625
- name: PR must be from a branch in the stackhpc/azimuth-llm repo
27-
run: |
28-
exit ${{ github.event.pull_request.head.repo.full_name == 'stackhpc/azimuth-llm' && '0' || '1' }}
26+
run: exit ${{ github.event.pull_request.head.repo.full_name == 'stackhpc/azimuth-llm' && '0' || '1' }}
2927

3028
publish_images:
3129
needs: [fail_on_remote]

.github/workflows/update-dependencies.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
contents: write
1111
pull-requests: write
1212
steps:
13-
1413
- name: Checkout the config repo
1514
uses: actions/checkout@v4
1615
with:
@@ -43,8 +42,8 @@ jobs:
4342
# Update yaml in-place with yq
4443
yq e -i '.api.image.version = strenv(NEW_VLLM_TAG)' $CHART_VALUES
4544
# Can't use in-place editing with jq
46-
jq --indent 4 --arg tag $NEW_VLLM_TAG '.properties.api.properties.image.properties.version.default = $tag' chart/values.schema.json > chart/values.schema.json.new
47-
mv chart/values.schema.json{.new,}
45+
jq --indent 4 --arg tag $NEW_VLLM_TAG '.properties.api.properties.image.properties.version.default = $tag' charts/azimuth-llm/values.schema.json > charts/azimuth-llm/values.schema.json.new
46+
mv charts/azimuth-llm/values.schema.json{.new,}
4847
fi
4948
5049
- name: Create Pull Request

charts/azimuth-llm/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ ui:
9292
# available configuration options.
9393
appSettings:
9494
model_name: *model-name
95+
model_instruction: |
96+
You are a helpful AI assistant. Please respond appropriately.
9597
# Use local system fonts by default to avoid GDPR issues
9698
# with Gradio's defaults fonts which require fetching from
9799
# the Google fonts API. To restore default Gradio theme

0 commit comments

Comments
 (0)