-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (45 loc) · 1.48 KB
/
build.yml
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
name: Build derived files
on:
# Allows for on-demand build
workflow_dispatch:
# Automatically rebuilds when somebody edits a markdown file in
# the kgmetadata/ directory
push:
branches:
- main
paths:
- 'kgmetadata/*.md'
jobs:
build:
runs-on: ubuntu-latest
container: obolibrary/odkfull:v1.5.4
steps:
- uses: actions/checkout@main
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
virtualenvs-path: .venv
installer-parallel: true
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Create local changes
run: |
poetry install --no-interaction
poetry run make
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "🚀 Automatically rebuilt derived files" -a
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: Update KG-Registry metadata
title: 'Update KG-Registry metadata'
body: |
Recreates all KG-Registry metadata.