-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BACKLOG-23237: Create manual-run.yml (#248)
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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 |