Manual Tests Run #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflows can be triggered manually via the GitHub actions UI | |
# It is used to trigger an integration tests run using snapshot artifacts | |
name: Manual Tests Run | |
on: | |
workflow_dispatch: | |
inputs: | |
jahia_image: | |
description: 'Jahia Image' | |
required: true | |
default: 'jahia/jahia-ee-dev:8-SNAPSHOT' | |
manifest: | |
description: 'Provisioning manifest. Can be a local repository file in the tests folder or a publicly accessible link' | |
required: true | |
default: 'provisioning-manifest-snapshot.yml' | |
jobs: | |
integration-tests: | |
uses: Jahia/jahia-modules-action/.github/workflows/integration-tests.yml@v2 | |
secrets: inherit | |
with: | |
jahia_image: ${{ github.event.inputs.jahia_image }} | |
module_id: site-settings-seo | |
testrail_project: SEO module | |
pagerduty_skip_notification: true | |
provisioning_manifest: ${{ github.event.inputs.manifest }} | |
artifact_prefix: seo |