Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 934 Bytes

File metadata and controls

26 lines (20 loc) · 934 Bytes

Cursion-Runner Action

This action lets you run a Test, Case, or Flow for a specific Site from your Cursion account.

Inputs

key description required default
api-token Your API Token found in your Cursion account YES None
run-type The type of run: test, case, or flow YES test
site-id ID of the Site you want to run against YES None
case-id ID of the Case you want to run NO None
flow-id ID of the Flow you want to run NO None
updates Values to update for a Case. (e.g. step-1:<value> step-2:<value>) NO None

Example usage

uses: actions/cursion@v0.0.1
with:
  api-token: ${{ secrets.CURSION_API_TOKEN }}
  run-type: 'flow'
  site-id: <your-site-id>
  flow-id: <your-flow-id>