Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release diff poster #1732

Merged
merged 19 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/post-release-diff.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Post release diff

on:
# Triggers the workflow on pull request events for the master branch
pull_request:
branches: [ master ]
paths:
- 'src/ontology/diffs/cl-diff.md'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:

post_diff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare release comment
env:
GITHUB_SHA: ${{ github.sha }}
run: "echo \"[Here's a diff of how this release impacts cl.owl](https://github.com/obophenotype/cell-ontology/blob/${{ env.GITHUB_SHA }}/src/ontology/diffs/cl-diff.md)\" >comment.md"
- name: Post reasoned comment
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: NejcZdovc/comment-pr@v1.1.1
with:
github_token: ${{ env.GITHUB_TOKEN }}
file: "../../comment.md"
identifier: "CL-DIFF"
2 changes: 1 addition & 1 deletion src/ontology/diffs/cl-diff.md
Original file line number Diff line number Diff line change
Expand Up @@ -3860,7 +3860,7 @@ Previous. An information content entity is a non-realizable information entity t

### intermediate cell of urothelium `http://purl.obolibrary.org/obo/CL_4030055`
#### Removed
- [intermediate cell of urothelium](http://purl.obolibrary.org/obo/CL_4030055) [has_exact_synonym](http://www.geneontology.org/formats/oboInOwl#hasExactSynonym) "urothelial intermediate cell"
- [intermediate cell of urothelium](http://purl.obolibrary.org/obo/CL_4030055) [has_exact_synonym](http://www.geneontology.org/formats/oboInOwl#hasExactSynonym) "urothelial intermediate cell"
- [database_cross_reference](http://www.geneontology.org/formats/oboInOwl#hasDbXref) "doi:10.1007/978-3-030-14366-4_8"

#### Added
Expand Down
Loading