Skip to content

Commit

Permalink
Merge pull request #59 from MilagrosMarin/main
Browse files Browse the repository at this point in the history
Style: Correct 'Schema' to 'schema' | Chore: Add GitHub Action Callers
  • Loading branch information
yambottle authored Sep 26, 2024
2 parents 8235a1f + 8e5443c commit 6845672
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/devcontainer-build-publish-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: devcontainer_build_publish
on:
workflow_dispatch:

jobs:
call_devcontainer_build_publish:
uses: datajoint/.github/.github/workflows/devcontainer-build-publish.yaml@main
secrets:
DOCKERHUB_USERNAME: ${{secrets.DOCKERHUB_USERNAME}}
DOCKERHUB_TOKEN: ${{secrets.DOCKERHUB_TOKEN_FOR_ELEMENTS}}
9 changes: 9 additions & 0 deletions .github/workflows/mkdocs-release-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: mkdocs-release
on:
workflow_dispatch:

jobs:
mkdocs_release:
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
permissions:
contents: write
10 changes: 10 additions & 0 deletions .github/workflows/semantic-release-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: semantic-release
on:
workflow_dispatch:

jobs:
call_semantic_release:
uses: datajoint/.github/.github/workflows/semantic-release.yaml@main
secrets:
APP_ID: ${{ secrets.ELEMENT_APP_ID }}
GET_TOKEN_KEY: ${{ secrets.ELEMENT_GET_TOKEN_KEY }}
2 changes: 1 addition & 1 deletion element_miniscope/miniscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from . import miniscope_report

schema = dj.Schema()
schema = dj.schema()

_linking_module = None
logger = dj.logger
Expand Down

0 comments on commit 6845672

Please sign in to comment.