https://github.com/a-know/actions-autify-light
Simple GitHub Actions for Autify
https://github.com/a-know/actions-autify-light
Last synced: about 1 year ago
JSON representation
Simple GitHub Actions for Autify
- Host: GitHub
- URL: https://github.com/a-know/actions-autify-light
- Owner: a-know
- License: mit
- Created: 2021-02-27T01:20:04.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-27T14:00:36.000Z (over 5 years ago)
- Last Synced: 2025-04-02T04:49:53.369Z (about 1 year ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# actions-autify-light
Simple GitHub Actions for Autify (https://autify.com/)
## What do this action
This action does the following:
- Kick Autify test-plan specified by ID.
- Wait for execution result.
- Returns an exit code depending on the result.
## Inputs and Outputs this action needs
### Inputs
- `project_id`
- Your Autify project ID.
- For example, the project_id for the following URL is `1`.
- `https://app.autify.com/projects/1/results`
- `testplan_id`
- Your Autify testplan ID.
- In order to request executing the test plan `https://app.autify.com/projects/1/test_plans/3` , the testplan ID is `3` .
### Outputs
none.
## Environment variables this action needs
- `AUTIFY_PERSONAL_TOKEN`
- Your Autify personal access token. To generate or manage tokens, please visit [your account page](https://app.autify.com/settings).
## Other secrets this action needs
none.
## How to use (Example Usage)
```yml
- name: Run Autify TestPlan
uses: a-know/actions-autify-light@main
with:
project_id: ${{ secrets.AUTIFY_PROJECT_ID }}
testplan_id: ${{ secrets.AUTIFY_TESTPLAN_ID }}
env:
AUTIFY_PERSONAL_TOKEN: ${{ secrets.AUTIFY_PERSONAL_TOKEN }}
```