We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a2d32 commit 47beb2bCopy full SHA for 47beb2b
.github/workflows/ontology-update.yml
@@ -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