Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.82 KB

README.md

File metadata and controls

51 lines (39 loc) · 1.82 KB

Autify for Web Run Test Plan Action

Test Release Release date License

Inputs

PARAMETER DESCRIPTION REQUIRED DEFAULT TYPE
autify_for_web_api_token Autify for Web API Token Yes - string
test_plan_id Test Plan ID that you want to run Yes - string
test_plan_api_base_url Test Plan API base URL No 'https://app.autify.com/api/v1/schedules/' string

Outputs

Name Description
response API response json

Usage Examples

Runs a Test Plan on Autify for Web.

name: "example"
on: [push]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: Funtional test
        id: functional-test
        uses: autifyhq/web-run-test-plan-action@v1.0.0
        with:
          autify_for_web_api_token: ${{ secrets.AUTIFY_FOR_WEB_API_TOKEN }}
          test_plan_id: ${{ secrets.TEST_PLAN_ID }}