Skip to content

Commit 6845672

Browse files
authored
Merge pull request #59 from MilagrosMarin/main
Style: Correct 'Schema' to 'schema' | Chore: Add GitHub Action Callers
2 parents 8235a1f + 8e5443c commit 6845672

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: devcontainer_build_publish
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
call_devcontainer_build_publish:
7+
uses: datajoint/.github/.github/workflows/devcontainer-build-publish.yaml@main
8+
secrets:
9+
DOCKERHUB_USERNAME: ${{secrets.DOCKERHUB_USERNAME}}
10+
DOCKERHUB_TOKEN: ${{secrets.DOCKERHUB_TOKEN_FOR_ELEMENTS}}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: mkdocs-release
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
mkdocs_release:
7+
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
8+
permissions:
9+
contents: write
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: semantic-release
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
call_semantic_release:
7+
uses: datajoint/.github/.github/workflows/semantic-release.yaml@main
8+
secrets:
9+
APP_ID: ${{ secrets.ELEMENT_APP_ID }}
10+
GET_TOKEN_KEY: ${{ secrets.ELEMENT_GET_TOKEN_KEY }}

element_miniscope/miniscope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from . import miniscope_report
1414

15-
schema = dj.Schema()
15+
schema = dj.schema()
1616

1717
_linking_module = None
1818
logger = dj.logger

0 commit comments

Comments
 (0)