From 09e599e35745e20c5bf89e7fb82156d8fe89c826 Mon Sep 17 00:00:00 2001 From: MilagrosMarin Date: Thu, 26 Sep 2024 19:42:54 +0200 Subject: [PATCH] chore: add new GitHub Action callers --- .../workflows/devcontainer-build-publish-caller.yml | 10 ++++++++++ .github/workflows/mkdocs-release-caller.yml | 9 +++++++++ .github/workflows/semantic-release-caller.yml | 10 ++++++++++ 3 files changed, 29 insertions(+) create mode 100644 .github/workflows/devcontainer-build-publish-caller.yml create mode 100644 .github/workflows/mkdocs-release-caller.yml create mode 100644 .github/workflows/semantic-release-caller.yml diff --git a/.github/workflows/devcontainer-build-publish-caller.yml b/.github/workflows/devcontainer-build-publish-caller.yml new file mode 100644 index 0000000..2745efe --- /dev/null +++ b/.github/workflows/devcontainer-build-publish-caller.yml @@ -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}} diff --git a/.github/workflows/mkdocs-release-caller.yml b/.github/workflows/mkdocs-release-caller.yml new file mode 100644 index 0000000..e25b018 --- /dev/null +++ b/.github/workflows/mkdocs-release-caller.yml @@ -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 diff --git a/.github/workflows/semantic-release-caller.yml b/.github/workflows/semantic-release-caller.yml new file mode 100644 index 0000000..bfd7643 --- /dev/null +++ b/.github/workflows/semantic-release-caller.yml @@ -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 }}