-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-7588_take2
- Loading branch information
Showing
3 changed files
with
113 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Update Synonyms Evidence | ||
|
||
on: | ||
# schedule: | ||
# - cron: '0 14 * * 1' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: obolibrary/odkfull:v1.5.3 | ||
|
||
steps: | ||
- name: Checkout main branch | ||
uses: actions/checkout@v3 | ||
|
||
- name: Update Synonyms evidence | ||
run: | | ||
cd src/ontology | ||
make GITHUB_ACTION=true IMP=false PAT=false update-synonyms-sync -B | ||
- name: QC to ensure that nothing other than provenance has changed | ||
run: cd src/ontology; make GITHUB_ACTION=true IMP=false PAT=false test -B | ||
continue-on-error: true # Allow QC to fail but continue | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
branch-suffix: short-commit-hash | ||
labels: automated | ||
body: "Update the confirmed synonyms axiom annotation." | ||
title: "Monthly confirmed synonyms evidence update" | ||
base: ${{ github.head_ref }} | ||
branch: "confirmed_synonyms_evidence" | ||
token: ${{ secrets.GH_TOKEN }} | ||
#reviewers: "sabrinatoro" |
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
Oops, something went wrong.