Update description in afpo.md (#2600) #230
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build derived files | |
on: | |
# Allows for on-demand build | |
workflow_dispatch: | |
# Automatically rebuilds when somebody edits a markdown file in | |
# the ontology/ directory | |
push: | |
branches: | |
- master | |
paths: | |
- 'ontology/*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: obolibrary/odkfull:v1.2.30 | |
steps: | |
- uses: actions/checkout@master | |
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: Create local changes | |
run: | | |
python -m pip install -r requirements.txt | |
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 OBO foundry metadata | |
title: 'Update OBO foundry metadata' | |
body: | | |
Recreates all OBO metadata. | |
assignees: deepakunni3 |