File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 2
2
name : Test pull request
3
3
4
4
on :
5
- # We use pull_request_target so that dependabot-created workflows can run
6
- pull_request_target :
5
+ pull_request :
7
6
types :
8
7
- opened
9
8
- synchronize
24
23
runs-on : ubuntu-latest
25
24
steps :
26
25
- 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' }}
29
27
30
28
publish_images :
31
29
needs : [fail_on_remote]
Original file line number Diff line number Diff line change 10
10
contents : write
11
11
pull-requests : write
12
12
steps :
13
-
14
13
- name : Checkout the config repo
15
14
uses : actions/checkout@v4
16
15
with :
43
42
# Update yaml in-place with yq
44
43
yq e -i '.api.image.version = strenv(NEW_VLLM_TAG)' $CHART_VALUES
45
44
# 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,}
48
47
fi
49
48
50
49
- name : Create Pull Request
Original file line number Diff line number Diff line change 92
92
# available configuration options.
93
93
appSettings :
94
94
model_name : *model-name
95
+ model_instruction : |
96
+ You are a helpful AI assistant. Please respond appropriately.
95
97
# Use local system fonts by default to avoid GDPR issues
96
98
# with Gradio's defaults fonts which require fetching from
97
99
# the Google fonts API. To restore default Gradio theme
You can’t perform that action at this time.
0 commit comments