diff --git a/.github/workflows/build_plugin_template.yaml b/.github/workflows/build_plugin_template.yaml index e9ae3a7..5ed9256 100644 --- a/.github/workflows/build_plugin_template.yaml +++ b/.github/workflows/build_plugin_template.yaml @@ -12,7 +12,7 @@ on: default: "new_plugin" nwx_cmake: required: false - type: bool + type: boolean default: true secrets: CONTAINER_REPO_TOKEN: diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index d63f394..9d2f90c 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -23,7 +23,23 @@ on: jobs: default_run: uses: ./.github/workflows/build_plugin_template.yaml + secrets: + CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }} + set_project_name: + uses: ./.github/workflows/build_plugin_template.yaml + with: + project_name: "NeW PluGIN" #Needs to result in default slug + secrets: + CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }} + set_project_slug: + uses: ./.github/workflows/build_plugin_template.yaml + with: + project_slug: "my_super_awesome_plugin" + secrets: + CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }} + no_nwx_cmake: + uses: ./.github/workflows/build_plugin_template.yaml with: - project_name: "New Plugin" + nwx_cmake: false secrets: CONTAINER_REPO_TOKEN: ${{ secrets.CONTAINER_REPO_TOKEN }}