-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.82 KB
/
on_schema_update.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Update JSONSchema and Golang schema bindings
on:
pull_request:
branches:
- develop
jobs:
changed_files:
runs-on: ubuntu-latest
name: Determine schema changes
steps:
- uses: actions/checkout@main
- name: Evaluate metadata schema changes
id: metadata-schema-changes
uses: tj-actions/changed-files@v44
with:
files: |
schema/kbase/linkml/credit_metadata.yaml
- name: Set up python
if: steps.metadata-schema-changes.outputs.any_changed == 'true'
uses: actions/setup-python@main
with:
python-version: 3.12
- name: Install linkml
shell: bash -l {0}
run: |
pip3 install linkml
- name: Check out DTS repo
if: steps.metadata-schema-changes.outputs.any_changed == 'true'
uses: actions/checkout@main
with:
repository: kbase/dts
path: dts
- name: Regenerate DTS Golang bindings for credit metadata schame
if: steps.metadata-schema-changes.outputs.any_changed == 'true'
shell: bash -l {0}
run: |
gen-golang schema/kbase/linkml/credit_metadata.yaml > dts/credit/metadata.go
- name: Create DTS pull request with regenerated credit metadata bindings
if: steps.metadata-schema-changes.outputs.any_changed == 'true'
uses: peter-evans/create-pull-request@v6
with:
branch: credit-metadata-schema-update
path: dts
title: Update to Credit Engine metadata schema
token: ${{ secrets.GHCR_TOKEN }}