Skip to content

Commit

Permalink
Added the GitHub action workflow for the SBOL Visual Ontology
Browse files Browse the repository at this point in the history
  • Loading branch information
goksel committed Aug 27, 2021
1 parent 31a2d32 commit 47beb2b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ontology-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: update-sbol-visual-ontology-repo

on:
release:
types: [ created ]

jobs:
update_ontology:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2

- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.SBOL_VISUAL_ONTOLOGY_DEPLOY_SECRET }}
repository: SynBioDex/sbol-visual-ontology
event-type: new-release
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'

0 comments on commit 47beb2b

Please sign in to comment.