Skip to content

Commit

Permalink
Add manual testing workflow (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
geofflamrock committed Aug 9, 2023
1 parent 7da9825 commit 233a63c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-login.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 233a63c

Please sign in to comment.