-
Notifications
You must be signed in to change notification settings - Fork 61
30 lines (27 loc) · 962 Bytes
/
update-epm.yml
File metadata and controls
30 lines (27 loc) · 962 Bytes
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
name: Update OBO Extended Prefix Map
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * 1"
jobs:
update_context:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Work around permission issue
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Update OBO context
run: |
wget "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/contexts/obo.epm.json" -O resources/obo.epm.json
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
if: ${{ success() }}
with:
branch: update-obo-epm
delete-branch: true
commit-message: Update OBO Extended Prefix Map from Bioregistry.
title: 'Update OBO Extended Prefix Map'
body: |
This pull request updates OBO extended prefix map (epm).
assignees: matentzn