Skip to content

Commit 47beb2b

Browse files
author
goksel
committed
Added the GitHub action workflow for the SBOL Visual Ontology
1 parent 31a2d32 commit 47beb2b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ontology-update.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: update-sbol-visual-ontology-repo
2+
3+
on:
4+
release:
5+
types: [ created ]
6+
7+
jobs:
8+
update_ontology:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Set up Git repository
12+
uses: actions/checkout@v2
13+
14+
- name: Repository Dispatch
15+
uses: peter-evans/repository-dispatch@v1
16+
with:
17+
token: ${{ secrets.SBOL_VISUAL_ONTOLOGY_DEPLOY_SECRET }}
18+
repository: SynBioDex/sbol-visual-ontology
19+
event-type: new-release
20+
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'

0 commit comments

Comments
 (0)