Skip to content

Commit

Permalink
BACKLOG-23237: Create manual-run.yml (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
rknj authored Oct 21, 2024
1 parent dfd3132 commit f34ce8f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/manual-run.yml
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

0 comments on commit f34ce8f

Please sign in to comment.