diff --git a/.github/workflows/test-login.yml b/.github/workflows/test-login.yml new file mode 100644 index 00000000..9c1a5479 --- /dev/null +++ b/.github/workflows/test-login.yml @@ -0,0 +1,25 @@ +name: Test login +on: + workflow_dispatch: + inputs: + server: + type: string + description: The url of the Octopus Instance + required: true + service_account_id: + type: string + description: The id of the service account to login for + required: true + +jobs: + login: + runs-on: ubuntu-latest + name: Test login to Octopus + steps: + - uses: actions/checkout@v3 + + - name: Login to Octopus + uses: ./ + with: + server: ${{ inputs.server }} + service_account_id: ${{ inputs.service_account_id }}