This action notifies QA Wolf that a deployment has been made, and initiate a run
if a matching trigger was found. Under the hood, this action uses the @qawolf/ci-sdk
package.
Refer to the official documentation for more details.
Required. The QA Wolf API key, which you can find on the application's team settings page.
The SHA of the git commit to be tested. Depending on your setup, this might be necessary.
The git branch to be tested. This might also be required depending on your configuration.
The trigger deployment type.
The URL of the deployment to be tested.
An advanced feature that allows you to control run superseding.
If the GitHub application is not installed, you can pass the commit URL, and it will be displayed in the UI.
JSON-formatted environment variables for the deployment to be tested.
The ID of the newly created run. This can be used with the ci-greenlight
integration.
⚠️ The following parameters given in thewith
clause may vary depending on your setup. Please contact a QA Wolf representative for more information. See also this documentation page.
GitHub Docs: pull_request
events
name: Deploy and Notify QA Wolf
on: pull_request
jobs:
# The deployment URL should be captured in this step, unless the
# URL is statically defined for the target environment.
deploy-preview-environmnent:
name: Your custom job to deploy a preview environment
uses: ./your-custom-action
wait-for-deployment:
name: Your custom job to wait for the deployed environment to be ready
uses: ./your-custom-action
notify:
needs: deploy-preview-environmnent
name: Trigger QA Wolf PR testing
runs-on: ubuntu-latest
steps:
- name: Notify QA Wolf of deployment
uses: qawolf/notify-qawolf-on-deploy-action@v1
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
qawolf-api-key: "${{ secrets.QAWOLF_API_KEY }}"
# THIS IS JUST AN EXAMPLE.
# The below parameters given in the `with` clause may vary depending on your setup.
sha: "${{ github.event.pull_request.head.sha }}"
branch: "${{ github.event.pull_request.head.ref }}"
# If not static, this URL should be captured in the deployment step, and passed
# down over here.
deployment-url: ${{ needs.deploy-preview-environmnent.outputs.deployment-url || "https://example.com" }}
name: Deploy and Notify QA Wolf
on:
push:
branches:
- main
jobs:
# The deployment URL should be captured in this step, unless the
# URL is statically defined for the target environment.
deploy-preview-environmnent:
name: Your custom job to deploy a preview environment
uses: ./your-custom-action
wait-for-deployment:
name: Your custom job to wait for the deployed environment to be ready
uses: ./your-custom-action
notify:
needs: deploy-preview-environmnent
name: Trigger QA Wolf PR testing
runs-on: ubuntu-latest
steps:
# It is assumed that there is a deployment step before this one.
# The deployment URL should be captured in that step, unless the
# URL is statically defined for the target environment.
- name: Notify QA Wolf of deployment
uses: qawolf/notify-qawolf-on-deploy-action@v1
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
qawolf-api-key: "${{ secrets.QAWOLF_API_KEY }}"
# THIS IS JUST AN EXAMPLE.
# The below parameters given in the `with` clause may vary depending on your setup.
sha: "${{ github.sha }}"
branch: "${{ github.ref }}"
# If not static, this URL should be captured in the deployment step, and passed
# down over here.
deployment-url: ${{ needs.deploy-preview-environmnent.outputs.deployment-url || "https://example.com" }}
⚠️ This is not required if you are using our GitHub application in PRs. See this documentation page.
The qawolf/notify-deploy-action
will output a run-id
of the initiated run.
If you want to setup a job to poll the status of the run with our SDK
(see this documentation page), you need to capture the run ID from the output.
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notify QA Wolf of deployment
# Add an id for the step
id: notify-qa-wolf
uses: qawolf/notify-qawolf-on-deploy-action@v1
# ...
- name: Utilize run-id in Subsequent Step
run: echo "The run-id is ${{ steps.notify-qa-wolf.outputs.run-id }}"